# 查看帮助 -----> conda -h
# 基于python3.6版本创建一个名字为python36的环境 ----> conda create --name python36 python=3.6
# 激活此环境 ----> activate python36 source activate python36
# 检查python版本,显示是 3.6 ----> python -V
# 退出当前环境 ----> deactivate python36
# 删除该环境 conda remove -n python36 --all
# 或者 conda env remove -n python36
# 查看所以安装的环境 conda info -e
# 安装 matplotlib ----> conda install matplotlib
# 查看已安装的包 ----> conda list
# 包更新 ----> conda update matplotlib
# 删除包 ----> conda remove matplotlib
# 更新conda本身 ---->conda update conda
# 更新anaconda 应用 ---->conda update anaconda
# 更新python ----> conda update python
# 基于python3.6版本创建一个名字为python36的环境 ----> conda create --name python36 python=3.6
# 激活此环境 ----> activate python36 source activate python36
# 检查python版本,显示是 3.6 ----> python -V
# 退出当前环境 ----> deactivate python36
# 删除该环境 conda remove -n python36 --all
# 或者 conda env remove -n python36
# 查看所以安装的环境 conda info -e
# 安装 matplotlib ----> conda install matplotlib
# 查看已安装的包 ----> conda list
# 包更新 ----> conda update matplotlib
# 删除包 ----> conda remove matplotlib
# 更新conda本身 ---->conda update conda
# 更新anaconda 应用 ---->conda update anaconda
# 更新python ----> conda update python
评论
发表评论