Python Forum

Full Version: Command "python setup.py egg_info" failed
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm trying this :
C:\>pip install shapely

but I get this :

Error:
Collecting shapely Using cached https://files.pythonhosted.org/packages/7d/3c/0f09841db07aabf9cc387662be646f181d07ed196e6f60ce8be5f4a8f0bd/Shapely-1.6.4.post1.tar.gz Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<string>", line 1, in <module> File "C:\Users\lenovo\AppData\Local\Temp\pip-install-4d86iizo\shapely\setup.py", line 80, in <module> from shapely._buildcfg import geos_version_string, geos_version, \ File "C:\Users\lenovo\AppData\Local\Temp\pip-install-4d86iizo\shapely\shapely\_buildcfg.py", line 200, in <module> lgeos = CDLL("geos_c.dll") File "C:\Python34\lib\ctypes\__init__.py", line 351, in __init__ self._handle = _dlopen(self._name, mode) OSError: [WinError 126] The specified module could not be found ---------------------------------------- Command "python setup.py egg_info" failed with error code 1 in C:\Users\lenovo\AppData\Local\Temp\pip-install-4d86iizo\shapely\
I've upgraded setuptools , wheel but it did not work.
what else should I try ?
As it says on the PyPI page of the package:

Quote:Windows users have two good installation options: the wheels at http://www.lfd.uci.edu/~gohlke/pythonlibs/#shapely and the Anaconda platform’s [conda-forge](https://conda-forge.github.io/) channel.

So, download the correct wheel for your system from Gohlke and use it to install the package

Assuming you have 64-bit version of Python 3.4 installed
1. download Shapely‑1.6.4.post1‑cp34‑cp34m‑win_amd64.whl
2. use pip install Shapely‑1.6.4.post1‑cp34‑cp34m‑win_amd64.whl assuming you are in the same folder where the downloaded wheel is