我已经安装了使用Python 2.7的arcGIS。它坐在这里:
c:\python27\arcgis10.7
我正在使用PyCharm,并尝试安装python-geohash,不幸的是,我无法执行,因为解释器设置为2.7。为了解决这个问题,我下载了tar.gz文件并提取了它:
python-geohash-0.8.5
解压缩的文件夹位于我的PyCharm项目文件夹中:
C:\Users\me\PycharmProjects\GeoHash\venv\Lib\site-packages
但是,当我在这里导航时:
C:\Users\me\PycharmProjects\GeoHash\venv\Lib\site-packages\python-geohash-0.8.5
然后运行:
python setup.py install
我得到:
'python' is not recognized as an internal or external command,
operable program or batch file.
这里的最佳做法是什么?我在哪里删除python-geohash-0.8.5提取的文件夹,在哪里运行python setup.py命令,以便可以在PyCharm中使用此库?谢谢。