ubuntu18.04中如何在pycharm中配置python3.8环境
时间: 2023-06-11 12:08:56 浏览: 350
pycharm+python环境配置
在 Ubuntu 18.04 中配置 Python 3.8 的环境变量可以参考以下步骤:
1. 安装 Python 3.8
使用以下命令安装 Python 3.8:
```
sudo apt-get update
sudo apt-get install python3.8
```
2. 安装 PyCharm
从官网下载 PyCharm 并安装:
https://www.jetbrains.com/pycharm/download/#section=linux
3. 配置 PyCharm 解释器
打开 PyCharm,选择 File -> Settings -> Project -> Project Interpreter,然后点击右上角的齿轮图标,选择 Add。
在弹出的窗口中选择 System Interpreter,然后在 Interpreter 下拉菜单中选择已安装的 Python 3.8 解释器路径。
4. 配置 PyCharm 运行环境
在 PyCharm 中创建一个新项目,然后在 Run -> Edit Configurations 中,选择 Python interpreter 为刚刚配置的 Python 3.8 解释器。
至此,PyCharm 中的 Python 环境已经配置完成。
阅读全文