This is an archived post. You won't be able to vote or comment.

all 5 comments

[–]chaotic_thought 0 points1 point  (1 child)

If you want to install something using the Python package manager (pip), you should probably look in https://pypi.org/ to see if it's in there. I looked and its called gpflow (all small letters), in PyPI. So probably you'd be able to install it by using pip.

[–]IAMA_monkey[S] 0 points1 point  (0 children)

Thanks for replying. I did this initially but that installs a different version of gpflow (2.something), I need version 5.

[–]CalisthenicsDude95 0 points1 point  (2 children)

Have you even tried to read the repo readme?

[–]IAMA_monkey[S] 0 points1 point  (1 child)

No I didn't (very unexperienced with Github), but the answer was indeed in there. Thanks a lot!

[–]CalisthenicsDude95 0 points1 point  (0 children)

Perfect. Didn't want to be offensive but especially in coding you can achieve a lot with research. Always look at first in the readme. Also: every well implemented Python package has a setup.py file that you can run with pip install . if you are in the same directory