ubuntu的pycharm安装pymysql
时间: 2023-10-16 17:24:40 浏览: 114
Python使用pycharm导入pymysql教程
5星 · 资源好评率100%
可以通过以下步骤在 Ubuntu 中安装 PyCharm 和 PyMySQL:
1. 安装 PyCharm:你可以在 PyCharm 官网下载 PyCharm 的安装包,然后按照安装向导进行安装。
2. 安装 PyMySQL:在终端中输入以下命令安装 PyMySQL:
```
sudo apt-get update
sudo apt-get install python3-pip
sudo pip3 install pymysql
```
3. 在 PyCharm 中配置 PyMySQL:打开 PyCharm,选择 File -> Settings -> Project -> Project Interpreter,在 Interpreter 面板中选择已安装 PyMySQL 的 Python 解释器,然后点击 Apply 和 OK 按钮即可。
阅读全文