ImportError:Windows arcgis子目录上没有模块名称PyPdf2 python 2.7.13

时间:2018-10-10 01:25:52

标签: python arcgis

我看过各种有关python无法获取已安装库的文章。我尝试使用python -m pip install PyPDF2来安装此库,但是没有运气。 enter image description here

编辑:站点包 enter image description here

1 个答案:

答案 0 :(得分:1)

您的PyPDF2模块似乎安装在arcgis子目录中 如果将此添加到应该执行的脚本顶部

import sys
sys.path.append('c:\python27\argis10.5\lib\site-packages')
import PyPDF2

如果需要,您还可以考虑修改PYTHONPATH

编辑并添加到Jeff的答案: 我在环境变量中添加了一个新的pythonpath变量,但我无法将python控制台定向到C:\ Python27 \ ArcGIS10.5 \ Lib \ site-packages enter image description here