python使用ubuntu命令
时间: 2024-01-10 22:04:01 浏览: 121
ubuntu安装python3.9 ubuntu安装python3.9
5星 · 资源好评率100%
Python 是一种高级编程语言,运行在操作系统之上。要在 Ubuntu 中使用 Python,可以通过终端使用以下命令:
1. 检查 Python 是否已安装:在终端中输入 `python` 或 `python3`,如果 Python 已经安装,终端会显示 Python 版本信息。
2. 运行 Python 脚本:在终端中输入 `python script.py` 或 `python3 script.py`,其中 `script.py` 是你要运行的 Python 脚本的文件名。
3. 安装 Python 包:在终端中输入 `sudo apt-get install python-pip`,然后使用 `pip` 命令安装需要的 Python 包,例如 `pip install numpy`。
4. 创建 Python 虚拟环境:在终端中输入 `python3 -m venv env`,其中 `env` 是你要创建的虚拟环境的名称,然后激活虚拟环境:`source env/bin/activate`。
5. 退出 Python 虚拟环境:在终端中输入 `deactivate`。
这些是在 Ubuntu 中使用 Python 的常用命令,希望对你有所帮助。
阅读全文