Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Windows 7 ( beautifulsoup) 中安装 Python 模块。这是我尝试安装的第一个模块,但在setup.py安装命令后收到一条奇怪的消息:
beautifulsoup
setup.py
Unable to create process using 'C:\Python33\python.exe'
知道发生了什么吗?我正在使用具有本地管理员权限的用户;可能是与我的 Windows 7 中的安全策略相关的一些问题吗?还有其他安装软件包的替代方法吗?
您必须设置环境变量:
请记住,当您下载 Python 时,它会转到它自己的目录。您需要找到 python3.3exe 所在的位置,并确保一切就绪。在您的程序视图中打开 python idle 编辑器并在 >>> print ("Hello World") 中查看是否一切正常。
来自 BigMAC