赞
踩
为了自己不用忘记后到处再搜
1.创建虚拟环境
conda create -n name(自起) python=3.7
如果此时报错:UnavailableInvalidChannel: The channel is not accessible or is invalid.
是因为我添加了其他默认镜像,这时只需要删除该镜像
该conda config --show channels
命令可以看一下都有什么镜像,conda config --remove-key channels
命令恢复默认配置,或者从pycharm中解释器里设置。
2.激活环境
activate name
3.pycharm上添加虚拟环境
首先需要找到虚拟环境的地址,因为创建的编译器在里面,如果创建虚拟环境时的结果还在,里面有一行就是指明了保存地址。
如果以及关闭页面,那么可以通过conda config --show命令,找到envs-dirs,envs-dirs即可以看出保存的默认地址在哪里。
之后在pycharm里添加新环境,编译器就使用虚拟环境路径中的编译器
镜像网址:
pip install -i url
url有:
阿里云 http://mirrors.aliyun.com/pypi/simple/
豆瓣 http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
安装问题:
1.ERROR: Could not find a version that satisfies the requirement *** (from versions: none)
ERROR: No matching distribution found for ***
命令行应该加上--trusted-host,拿豆瓣镜像为例:
pip install *** -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。