Python Forum
How can I install PyGMO in Python3.8? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: How can I install PyGMO in Python3.8? (/thread-32089.html)



How can I install PyGMO in Python3.8? - TheGreatGhalib - Jan-20-2021

I want to use the PyGMO package (https://esa.github.io/pygmo/install.html). I use Pycharm with Python3.8, because I have never managed anything in this so called Python IDLE.

With Pycharm you can install packages via "Settings - Project Interpreter", which has always worked great so far. But with PyGmo I get the error message: "ERROR: Could not find a version that satisfies the requirement pygmo".

When I try it via Pip with the WHL file (https://pypi.org/project/pygmo/#files) I get the error message: (ERROR: pygmo-2.16.1-cp38-cp38-manylinux2010_x86_64.whl is not a supported wheel on this platform.). Where cp38 stands for the Python3.8 version I use. I also use the current Pip version 3.3.

Translated with www.DeepL.com/Translator (free version)


RE: How can I install PyGMO in Python3.8? - buran - Jan-20-2021

I guess you are on Windows, while on PyPI there are wheels only for linux (note manylinux2010 platform name tag). You can follow the instructions how to compile and install from source on windows as provided in the docs.