anaconda环境查看及jupyter使用

激活新建环境:activate tensorflow
退出环境:conda deactivate
删除环境:conda remove -n tensorflow --all

anaconda使用conda创建虚拟环境
关于conda的一些使用:
conda -V :查看conda版本
conda list:查看安装了哪些包
查看当前存在哪些虚拟环境:conda env list,conda info -e
检查更新conda:conda update conda

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
Conda install packages

pip使用清华镜像:
pip install matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple

Python创建虚拟环境:conda crate -n env_name python = X.X
激活虚拟环境:activate env_name
在虚拟环境中安装包:conda install -n env_nme [packages]
删除环境中的某个包:conda remove --name $env_name $package_name
关闭虚拟环境:conda deactivate ,deactivate
删除虚拟环境:conda remove -n env_name --all

对于创建完成的环境,在新的环境下安装jupyter notebook,需要在新环境下:pip install jupyter notebook,之后运行:jupyter notebook,进入新环境下的notebook进行python代码编译

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值