如何在fedora中编译或运行python程序?
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
放在
文件的顶部。然后在命令行上执行
(我使用
$
表示 shell 提示符,不要输入它。)您可以运行该文件,
您也可以只做
并且不需要
#!/usr....
或$ chmod ...
内容,但第一个方法是在 UNIX 中做事的自然方法。Put
at the top of your file. Then on the command line do
(I use
$
to indicate a shell prompt, don't type that.)You can run the file with
You can also just do
and don't need the
#!/usr....
or$ chmod ...
stuff, but the first approach is the natural way to do things in unix.Fedora 中已经安装了 python。只需在命令行中运行:
In Fedora python is already installed. Just run in the command line: