python -V
二、添加新环境到jupyter
1、创建新环境
conda create --name myenvname python=3.8
2、进入环境
conda activate myenvname
3、安装ipykernel包
conda install ipykernel
可以关闭jupyter安装
4、添加到jupyter中
python -m ipykernel install --name snp
snp为在jupyter中的环境名字
三、使用environment.txt or environment.yml文件创建环境
1、进入.txt or .yml文件目录
2、conda env create -f environment.txt(.yml)
遇见的错误:1)文件错误:删除文件里面第二个等号后面的内容
2)后面还有报错的话先注释掉随后缺什么安装什么
环境名为文件中的名字。
四、pip安装时的报错
1、WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘SSLError(SSLZeroReturnError(6, ‘TLS/SSL connection has been closed (EOF) (_ssl.c:1131)’))’: /simple/fire/
这种报错是网络问题,加上镜像源:pip install requests**-i http://pypi.douban.com/simple --trusted-host pypi.douban.com**
request为需要安装的库
python -m pip install --upgrade pip # 升级pip到最新版本
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
常用源
- 清华:https://pypi.tuna.tsinghua.edu.cn/simple
- 阿里云:http://mirrors.aliyun.com/pypi/simple/
- 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
- 华中理工大学:http://pypi.hustunique.com/
- 山东理工大学:http://pypi.sdutlinux.org/
- 豆瓣:http://pypi.douban.com/simple/
临时使用
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
删除国内源
pip config unset global.index-url
现在能在网上找到很多很多的学习资源,有免费的也有收费的,当我拿到1套比较全的学习资源之前,我并没着急去看第1节,我而是去审视这套资源是否值得学习,有时候也会去问一些学长的意见,如果可以之后,我会对这套学习资源做1个学习计划,我的学习计划主要包括规划图和学习进度表。
分享给大家这份我薅到的免费视频资料,质量还不错,大家可以跟着学习