web-dev-qa-db-ja.com

Shapelyのインストール:OSError:[WinError 126]指定されたモジュールが見つかりませんでした

Shapelyパッケージをインストールする必要があります( http://toblerity.org/shapely/project.html#installation )。しかし、私が使用しているとき:

pip install Shapely

このエラーが発生しています:

Collecting Shapely
  Using cached Shapely-1.5.17.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\AppData\Local\Temp\pip-build-mwuxcain\Shapely\setup.py", line 38, in <module>
        from shapely._buildcfg import geos_version_string, geos_version, \
      File "C:\Users\AppData\Local\Temp\pip-build-mwuxcain\Shapely\shapely\_buildcfg.py", line 200, in <module>
        lgeos = CDLL("geos.dll")
      File "C:\Users\Anaconda3\lib\ctypes\__init__.py", line 344, 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\AppData\Local\Temp\pip-build-mwuxcain\Shapely\

そして、私が使用しているとき:

conda install shapely

このエラーが発生しています:

Fetching package metadata ...........


PackageNotFoundError: Package not found: Conda could not find '

私はWindows 10(64ビット)でPython 3.6.0(Anaconda3)を使用しています。

助けてください。 (何も動作しません)

17
Beginner

http://www.lfd.uci.edu/~gohlke/pythonlibs/#shapely を使用してWHLファイルをダウンロードします

インストール:

python -m pip install Shapely-1.5.17-cp36-cp36m-win_AMD64.whl

Ubuntu:

pip install shapely==1.6b2
17
Beginner