创建一个名为pytorch的环境,指定Python版本是3.6
conda create --name pytorch python=3.6
查看当前拥有的所有的环境
conda info -e
环境切换,切换到名为pytorch的环境
source activate pytorch
conda activate YourEnvs (第一个命令无效时使用)
删除一个名为pytorch的环境
conda remove --name pytorch --all
安装python包
conda install 包名
conda install -n 环境名 包名
如果不用-n指定环境名称,则被安装在当前活跃环境
也可以通过-c指定通过某个channel安装
查看当前环境下已安装的包
conda list
查看某个指定环境的已安装包
conda list -n 环境名
查找包信息
conda search 包名
更新package
conda update -n 环境名 包名
删除package
conda remove -n 环境名 包名
更新conda,保持conda最新
conda update conda
更新anaconda
conda update anaconda
更新python
conda update python
假设当前环境是python 3.4, conda会将python升级为3.4.x系列的当前最新版本
安装 jupyter插件
conda install -c conda-forge jupyter_contrib_nbextensions
插件官方github地址:https://github.com/ipython-contrib/jupyter_contrib_nbextensions
目录栏Table of Contents (2)
点击红框中的按钮(显示在侧边)或Navigate(显示在该按钮下)均可调出目录栏
参考资料:https://www.jianshu.com/p/2f3be7781451
网友评论