在 Windows 上运行带有两个 Python 安装的 Scons
我已经安装了两个不同的 python 版本(3.1 和 2,7),这现在引起了头痛。默认安装是 3.1,它设置了 PYTHONHOME 和 PYTHONPATH。问题是,当我尝试从 2.7 安装(通过 Python27/Scripts/scons.bat)运行 scons 时,我收到各种引用 Python31/lib/ 文件夹的导入错误。
除了更改整个系统的 PYTHONHOME 和 PYTHONPATH 之外,还有什么好的解决方案吗? scons 不应该能够与安装的两个版本的 python 一起使用吗?
不确定这是一个超级用户问题还是一个 SO 问题,但我猜大多数使用过 Python 和 Scons 的人都挂在这里,而不是 SU。
I have installed two different python versions (3.1 and 2,7) And this is now causing a headache. The default installation is the 3.1 which have the PYTHONHOME and PYTHONPATH set. Problem is that when I try to run scons from the 2.7 installation (via Python27/Scripts/scons.bat) I get various import errors that reference to the Python31/lib/ folder.
Are there any good solutions for this, except changing PYTHONHOME and PYTHONPATH for the whole system. Shouldn't scons be able to work with two versions of python installed?
Not sure if this is a SuperUser or a SO question, but my guess that most people experienced with Python and Scons hangs here, and not in SU.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将
scons.bat
脚本中的PYTHONHOME
和PYTHONPATH
分别设置为每个 Python 安装的正确值。Try to set
PYTHONHOME
andPYTHONPATH
in thescons.bat
scripts to the right values for each Python installation respectively.