在 Ubuntu 12.04 上使用终端通过 IDLE 打开 Python 文件

在 Ubuntu 12.04 上使用终端通过 IDLE 打开 Python 文件

如何使用 Ubuntu 12.04 上的终端通过 IDLE 打开 python 文件(从桌面)?

我曾尝试这样做:

$ idle open python_file.py

它没有打开我的文件,而是创建了另外两个文件:openpython_file.py

答案1

只是

idle python_file.py

如果您希望它在后台运行(将控制权返回到终端,以便您可以输入其他命令),请添加“&”

idle python_file.py &

如果你希望它在关闭终端后仍继续运行,你可以“放弃”它

idle python_file.py & disown

答案2

您不需要使用‘开放’一词。 帮助中说:

idle.py [-c command] [-d] [-e] [-s] [-t title] [arg] ...

-c command  run this command
-d          enable debugger
-e          edit mode; arguments are files to be edited
-s          run $IDLESTARTUP or $PYTHONSTARTUP first
-t title    set title of shell window

你可以这样做:

idle file_you_want_to_open.py 
or 
idle.py file_you_want_to_open.py

如果该文件不存在那么它将被创建。

答案3

您也可以通过键入以下内容直接打开空闲状态:

 idle

在终端中,然后点击

 File >> New File or Open File

选项来选择或打开文件,编写程序并执行。不过我建议你使用“终端“ 和一个 “文本编辑器“ 喜欢

 Sublime Text

而不是使用“闲置的“。

附言:您可能已经了解这些文本编辑器,但是我提到它以防其他人看到这篇文章并且也许它会派上用场。

答案4

做这个:

$ cd ~/Desktop
$ idle your_file.py

相关内容