Tôi đang cố gắng cài đặt gói tạo hình bằng cách cài đặt pip, nhưng cài đặt không hoàn tất.
Tôi gõ:
pip install shapely
Kết quả là tôi nhận được thông báo sau:
F:\WPy-3670\scripts>pip install shapely
Collecting shapely
Using cached https://files.pythonhosted.org/packages/a2/fb/7a7af9ef7a35d16fa23b127abee272cfc483ca89029b73e92e93cdf36e6b/Shapely-1.6.4.post2.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\silva\AppData\Local\Temp\pip-install-a6qsxj87\shapely\setup.py", line 80, in <module>
from shapely._buildcfg import geos_version_string, geos_version, \
File "C:\Users\silva\AppData\Local\Temp\pip-install-a6qsxj87\shapely\shapely\_buildcfg.py", line 200, in <module>
lgeos = CDLL("geos_c.dll")
File "F:\WPy-3670\python-3.6.7.amd64\lib\ctypes\__init__.py", line 348, 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\silva\AppData\Local\Temp\pip-install-a6qsxj87\shapely\
Tôi đã cài đặt các gói khác và nó hoạt động tốt.
Tôi có thể làm gì để quản lý để cài đặt gói này? (Tôi muốn cài đặt nó bởi vì tôi cũng muốn cài đặt gói geopandas, nhân tiện, nó cũng hiển thị cùng một vấn đề.)
Cảm ơn nhiều.
1
Bạn đã cài đặt GEOS chưa? Xem shapely.readthedocs.io/en/urdy/project.html#requirements
—
slhck