pycharm怎么重命名文件、文件夹名称
1.右键单击文件名称,在弹出的界面选择refacto下的rename选项
2.在弹出的界面输入新的名称即可
pycharm更换pip清华源
永久使用
直接在Pycharm打开终端Terminal,选择Command Prompt,将下列语句复制进去,回车执行
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
一次使用
pip install 要下载的包名 -i https://pypi.tuna.tsinghua.edu.cn/simple
conda换源(安装pytorch必备)
conda config –add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config –add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
# 设置搜索时显示通道地址
conda config –set show_channel_urls yes
若失效,可换回默认源
换回默认源:conda config –remove-key channels
125jz网原创文章。发布者:江山如画,转载请注明出处:http://www.125jz.com/12278.html