如何在fedora中编译或运行python程序?

发布于 2024-12-11 07:39:35 字数 145 浏览 0 评论 0原文

如何在 fedora 中运行一个简单的 python 程序?

我对 Fedora 非常陌生,我不知道如何开始使用 Fedora。我们需要在fedora中安装任何软件才能使python程序运行吗?请一步步告诉我该怎么做。我熟悉 IDLE,但不熟悉 fedora。

How do I run a simple python program in fedora?

I am very much new to fedora and i don't know how exactly to start in fedora. Do we need to install any software in fedora to make python programs work? Please tell me step by step how to do it. I am familiar with IDLE but not in fedora.

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

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

发布评论

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

评论(2

泪冰清 2024-12-18 07:39:35

放在

#!/usr/bin/env python

文件的顶部。然后在命令行上执行

$ chmod u+x your_python_file.py

(我使用 $ 表示 shell 提示符,不要输入它。)
您可以运行该文件,

$ ./yourpythonfile.py

您也可以只做

$ python yourpythonfile.py

并且不需要 #!/usr....$ chmod ... 内容,但第一个方法是在 UNIX 中做事的自然方法。

Put

#!/usr/bin/env python

at the top of your file. Then on the command line do

$ chmod u+x your_python_file.py

(I use $ to indicate a shell prompt, don't type that.)
You can run the file with

$ ./yourpythonfile.py

You can also just do

$ python yourpythonfile.py

and don't need the #!/usr.... or $ chmod ... stuff, but the first approach is the natural way to do things in unix.

第七度阳光i 2024-12-18 07:39:35

Fedora 中已经安装了 python。只需在命令行中运行:

 python ./yourProgram.py

In Fedora python is already installed. Just run in the command line:

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