在 Linux 下,要运行 Python 脚本,请按照以下步骤操作:
-
打开终端。
-
使用
cd
命令导航到包含 Python 脚本的目录。例如,如果脚本位于/home/user/my_scripts
目录中,请输入以下命令:
cd /home/user/my_scripts
- 确保 Python 已安装在您的系统上。要检查 Python 是否已安装以及其版本,请在终端中输入以下命令:
python --version
或者(对于 Python 3):
python3 --version
如果未安装 Python,请根据您的 Linux 发行版使用相应的包管理器(如 apt
、yum
或 pacman
)进行安装。
- 要运行 Python 脚本,请在终端中输入以下命令:
python script_name.py
其中 script_name.py
是您要运行的脚本的文件名。例如,如果您的脚本名为 example_script.py
,则输入以下命令:
python example_script.py
或者(对于 Python 3):
python3 example_script.py
这将使用 Python 解释器执行脚本,并在终端中显示输出。如果脚本需要命令行参数,请在文件名后附加这些参数,例如:
python example_script.py arg1 arg2 arg3