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 --set show_channel_urls yes
设置pip的默认为清华镜像
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
中科院 镜像
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
查看已有镜像
conda config --show
删除镜像
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/tensorflow/linux/cpu/
添加镜像
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
恢复至默认镜像
conda config --remove-key channels
设置搜所时显示地址 conda config --set show_channel_urls yes
更新pip
conda install pip
更新安装新版本pip
python -m pip install --upgrade pip
查询各个安装包的版本信息
conda list
清华镜像下安装pytorch
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda install pytorch torchvision cudatoolkit=9.0 (版本号从https://pytorch.org/上,查找对应版本)
conda install pytorch torchvision cpuonly -c pytorch
conda install pytorch-cpu torchvision-cpu
安装pygame
pip install pygame
清华源安装pygeme
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pygame
python直接安装opencv
pip install opencv-python
安装python进度条
pip install tqdm
安装utils库
pip install utils