-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installing in Anaconda #112
Comments
Try |
Thank you! Unfortunately, it looks like pip no longer supports
I am using pip version 19.0.3.
|
You can install GPFlow 0.5.0 directly from git: |
I have faced the same problem. |
The following instructions worked for me. The instructions assumes that the current directory has both conda create -n GPflowOpt python=3.5 numpy scipy jupyter matplotlib pip=10
conda activate GPflowOpt
pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.2.1-cp35-cp35m-linux_x86_64.whl
cd GPflow
git checkout tags/0.5.0 -b 0.5.0 # GPFlowOpt requires GPflow=0.5.0
python setup.py install
cd ../GPflowOpt/
pip install -e . --process-dependency-links These instructions follow from:
These instructions allowed me to run the examples |
Faced the same issue. I have Python of version 3.8.3.
|
Hello,
I am trying to install GPFlowOpt in Anaconda. Here is the error I am getting:
(base) CEEITs-MacBook-Pro:GPflowOpt hmedal$ conda activate gpflowopt
(gpflowopt) CEEITs-MacBook-Pro:GPflowOpt hmedal$ pip install git+git://github.com/GPflow/GPflowOpt.git
Collecting git+git://github.com/GPflow/GPflowOpt.git
Cloning git://github.com/GPflow/GPflowOpt.git to /private/var/folders/fj/nbbxj0td0lbdvgq33y96w3mm0000gp/T/pip-req-build-57jmjtlx
Collecting numpy>=1.9 (from gpflowopt==0.1.1)
Using cached https://files.pythonhosted.org/packages/a6/6f/cb20ccd8f0f8581e0e090775c0e3c3e335b037818416e6fa945d924397d2/numpy-1.16.2-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Collecting scipy>=0.16 (from gpflowopt==0.1.1)
Using cached https://files.pythonhosted.org/packages/dd/6c/ccf7403d14f0ab0f20ce611696921f204f4ffce99a4fd383c892a6a7e9eb/scipy-1.2.1-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Collecting GPflow==0.5.0 (from gpflowopt==0.1.1)
Could not find a version that satisfies the requirement GPflow==0.5.0 (from gpflowopt==0.1.1) (from versions: 1.0.0, 1.1.0, 1.1.1, 1.2.0, 1.3.0)
No matching distribution found for GPflow==0.5.0 (from gpflowopt==0.1.1)
Any guidance you can provide is appreciated.
The text was updated successfully, but these errors were encountered: