linux 脚本中运行 python3
时间: 2024-05-16 15:18:13 浏览: 121
python3.1.2 linux下
要在 Linux 脚本中运行 Python3,可以使用以下命令:
```bash
#!/bin/bash
python3 /path/to/script.py
```
其中,`#!/bin/bash` 表示使用 bash 作为解释器,`python3` 后面的路径是 Python3 解释器的路径,`/path/to/script.py` 则是要执行的 Python3 脚本的路径。
如果想要在 Linux 脚本中运行 Python3 脚本的同时传递参数,可以使用以下命令:
```bash
#!/bin/bash
python3 /path/to/script.py arg1 arg2 arg3
```
其中,`arg1`、`arg2`、`arg3` 是要传递给 Python3 脚本的参数。在 Python3 脚本中,可以使用 `sys.argv` 获取这些参数。
阅读全文