CJK备注
阅读原文时间:2023年07月08日阅读:1

pip清华镜像库 :pip install XXX -i https://pypi.tuna.tsinghua.edu.cn/simple

pip阿里巴巴镜像库:pip install XXX -i https://mirrors.aliyun.com/pypi/simple/

pip批量下载(requirements.txt里写有所有需要的库): pip install -r requirements.txt

更新pip:python -m pip install --upgrade pip

python第三方包(.whl)仓库:

https://www.lfd.uci.edu/~gohlke/pythonlibs

Chrome扩展插件官方商店

https://chrome.google.com/webstore/category/extensions?hl=zh-CN

[Chrome扩展插件国内版 ]:

https://www.chrome666.com/

软件:

360压缩,Edge,clover,ffmpeg,QQ,微信*2,网易邮箱大师,potplayer,WPS,百度云盘,steam,typora,腾讯会议,VS code,cuda&cudnn,阿里云盘,VMware(Ubuntu),Geek Uninstaller,anaconda,Codeblocks,小米云服务,MIUI+,文件夹加密,JAVA,UU加速器,Git,腾讯视频,IDEA,Everything,有道词典,迅雷,星愿浏览器,QQ音乐,网易云音乐,格式工厂,flux,win10易升,Notepad,TO DO,火绒,拖把更名器,唧唧,ABBYY FineReader 14,Bandicam,微软常用运行库合集,MATLAB,Xshell+FileZilla,IDM

#conda添加镜像源(清华是使用最多的)
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 --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
#设置搜索时显示通道地址
conda config --set show_channel_urls yes
# 中科大镜像源
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/

# 阿里镜像源
conda config --add channels https://mirrors.aliyun.com/pypi/simple/

# 豆瓣的python的源
conda config --add channels http://pypi.douban.com/simple/ 

# 显示检索路径,每次安装包时会将包源路径显示出来
conda config --set show_channel_urls yes

conda config --set always_yes True

# 显示所有镜像通道路径命令
conda config --show channels

#显示添加的镜像源:
conda config --show channels
#删除指定的的镜像源:
conda config --remove channels 源名称或链接