失效链接处理 |
Python与Opencv配置安装 PDF 下载
相关截图:
主要内容:
3.创建并配置虚拟环境,创建虚拟环境后可配置
pip list
3.2:conda添加清华镜像源 清华大学开源软件镜像站 conda config --remove-key channels
#添加镜像源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs
#显示检索路径 conda config --set show_channel_urls yes
#显示镜像通道 conda config --show channels
3.3:例如新建一个名为py36的环境,并且环境中python版本为python3.6,输入以下命 conda create --name py3.6 python=3.6
选择 y(yes) conda activate py3.6
|