pycharm换清华源
时间: 2023-11-28 07:44:22 浏览: 245
PyCharm更换pip源为国内源、模块安装、PyCharm依赖包导入导出教程
在Pycharm中更换清华源的步骤如下:
1. 点击File菜单,选择Settings进入到Package添加界面。
2. 在左侧列表中选择Project Interpreter,然后在右侧列表中选择需要更换源的Python解释器。
3. 在右侧列表底部点击加号,选择Manage Repositories。
4. 在弹出的对话框中点击加号,输入清华源的地址:https://pypi.tuna.tsinghua.edu.***可以在Pycharm中的Terminal中输入以下命令:
```
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
```
阅读全文