如何使用 python 3.x 运行程序
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
通常会在您的路径中创建一个名为
python3
的符号链接。所以你应该只需要通过调用你的程序
Usually a symlink is created in your path called
python3
.So you should just need to call your program via
安装
即使安装了python3之后,python 2.7仍将保留并默认
现在,运行python3代码的方法->
方法1
运行
python3
现在编写代码
方法2
运行保存sample.py文件
Installation
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
你有针对 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.
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.