2

我想安装 PyPDF2 包(https://github.com/knowah/PyPDF2

我在 Windows 上,所以我这样继续:

setup.py install

但我收到此消息错误:

running install
running build
running build_py
running install_lib
creating C:\Program Files\Python\Python27\Lib\site-packages\PyPDF2
error: could not create "C:\Program Files\Python\Python27\Lib\site-packages\PyPDF2" : Access is denied

setup.py我在我的硬盘 G 上拥有权限,但我在文件上找不到这个 windows 路径。你知道我可以改变这条路吗?

非常感谢你

4

2 回答 2

2

试试setup.py install --user吧。

于 2013-03-19T15:42:31.307 回答
0

另一种方法是右键单击命令提示符图标并选择“以管理员身份运行”。这将允许您将包安装在“C:\Program Files\Python\Python27... 目录中。--user 是一个很好的解决方案,但它只为当前用户安装,'run as' 为所有用户安装。'如果您使用多个帐户或正在运行需要该软件包的 Web 服务,则 run as' 很有用。

于 2013-03-19T16:08:28.190 回答