如何使用特定解释器运行 python 脚本?

发布于 2024-11-10 09:16:50 字数 278 浏览 0 评论 0原文

我在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泪眸﹌ 2024-11-17 09:16:50

Python 安装不同的二进制文件(以及二进制文件的链接):

  • python 链接到系统的标准 Python (2) 版本
  • python3 链接到系统的标准 Python 3 版本
  • python2< /code> 链接到系统的标准 Python 2 版本
  • python2.7 是 Python 2.7 解释器
  • python2.6 是 Python 2.6 解释器

所以就这样使用它:

python2.6 file.py

注意当然你需要安装Python 2.6。

Python installs different binaries (and links to binaries):

  • python links to the system's standard Python (2) version
  • python3 links to the system's standard Python 3 version
  • python2 links to the system's standard Python 2 version
  • python2.7 is the Python 2.7 interpreter
  • python2.6 is the Python 2.6 interpreter

So just use it like this:

python2.6 file.py

Note that you need to have Python 2.6 installed of course.

月亮是我掰弯的 2024-11-17 09:16:50

首先使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文