如何使用特定解释器运行 python 脚本?
我在使用 pygame 时遇到问题,如下所示: PyGame 陷入 Linux 困境?
经过一番搜索和集思广益后,我意识到这可能是因为我使用的是 python2.7 而不是 PyGame 设计的 2.6。
如何使用 2.6 解释器而不是 2.7(这似乎是默认解释器)运行我的脚本。
感谢
操作系统-Ubuntu
I'm having problems with pygame as documented here:
PyGame bogging down linux?
After a bit of searching around and brainstorming I realized it may be because I'm using python2.7 instead of 2.6 which PyGame was designed for.
How do I run my script using the 2.6 interpreter instead of 2.7 (which seems to be the default).
Thanks
OS - Ubuntu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Python 安装不同的二进制文件(以及二进制文件的链接):
python
链接到系统的标准 Python (2) 版本python3
链接到系统的标准 Python 3 版本python2< /code> 链接到系统的标准 Python 2 版本
python2.7
是 Python 2.7 解释器python2.6
是 Python 2.6 解释器所以就这样使用它:
注意当然你需要安装Python 2.6。
Python installs different binaries (and links to binaries):
python
links to the system's standard Python (2) versionpython3
links to the system's standard Python 3 versionpython2
links to the system's standard Python 2 versionpython2.7
is the Python 2.7 interpreterpython2.6
is the Python 2.6 interpreterSo just use it like this:
Note that you need to have Python 2.6 installed of course.
首先使用 apt-get 安装替代 Python,然后使用解释器的完整路径运行。
另外,在 ubuntu 上您应该能够使用诸如 python2.6 script.py 之类的东西。
First install the alternative Python using
apt-get
and second, run with full path to the interpreter.Also, on ubuntu you should be able to use something like
python2.6 script.py
.