如何使用 python 3.x 运行程序

发布于 2024-10-24 15:51:04 字数 121 浏览 1 评论 0原文

我使用 ubuntu 10.10,并且同时拥有 Python 2.x 和 Python 3.x。我有一个程序需要使用 python 3.x (blender 2.5x) 运行。
如何使用 python 3.x 运行程序?

I use ubuntu 10.10, and I have both Python 2.x and Python 3.x. I have a program that needs to run with python 3.x (blender 2.5x).
How do I run a program with python 3.x?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

娇妻 2024-10-31 15:51:04

通常会在您的路径中创建一个名为 python3 的符号链接。

所以你应该只需要通过调用你的程序

python3 ProgramName.py

Usually a symlink is created in your path called python3.

So you should just need to call your program via

python3 ProgramName.py
岁吢 2024-10-31 15:51:04

安装

sudo apt-get install python3

即使安装了python3之后,python 2.7仍将保留并默认

现在,运行python3代码的方法->

方法1

运行python3
现在编写代码

方法2

运行保存sample.py文件

python3 sample.py

Installation

sudo apt-get install python3

Even after installing python3, python 2.7 will stay and be default

Now, the way to run python3 code->

Method 1

Run python3
Now write the code

Method2

Run a save sample.py file

python3 sample.py
雨落星ぅ辰 2024-10-31 15:51:04

你有针对 python 2.x 和 python 3.x 的单独的 python 可执行文件吗?在我的系统上,我有 /usr/bin/python2.5 和 /usr/bin/python2.6。我还有一个 /usr/bin/python2,它是 /usr/bin/python2.6 的符号链接。我想你也有一个 /usr/bin/python3 。在这种情况下,您只需使用 /usr/bin/python3 而不是更通用的 /usr/bin/python 来运行程序。

我希望这有帮助。

Do you have a separate python executable for python 2.x and for python 3.x? On my system I have /usr/bin/python2.5 and /usr/bin/python2.6. I also have a /usr/bin/python2, which is a symbolic link to /usr/bin/python2.6. I presume that you have a /usr/bin/python3 too. In which case, you simply run the program using /usr/bin/python3 instead of the more generic /usr/bin/python.

I hope this helps.

心奴独伤 2024-10-31 15:51:04

Blender 根本不使用 Python 运行或通过 Python 运行。它是本机编译的可执行文件,可以直接运行。然而,它确实嵌入了 Python 并将其用作脚本语言。 Blender 2.5 使用 Python 3,为此,您需要在系统路径中安装 Python 3,以便 Blender 可以找到它。

仅此而已,据我所知。

Blender is not run with or through Python at all. It's a native compiled executable and runs directly. It does however embed Python and use it as a scripting language. Blender 2.5 uses Python 3, and for this to work you need Python 3 installed on your system in the path, so blender can find it.

That's all, afaik.

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