标签:color 指令 info pac numpy missing tensor current anaconda
# 查看当前环境下已安装的包
conda list
# 查看某个指定环境的已安装包
conda list -n tensorflow
# 查找package信息
conda search numpy
# 安装package
conda install -n tensorflow numpy
# 如果不用-n指定环境名称,则被安装在当前激活环境
# 也可以通过-c指定通过某个channel安装
# 更新package
conda update -n TensorFlow numpy
# 删除package
conda remove -n TensorFlow numpy
# 删除一个已有环境
conda remove --name tensorflow --all
anaconda search -t conda 包名(比如:mxnet-cu90)
conda install --channel https://conda.anaconda.org/qiqiao mxnet-cu90mkl
标签:color 指令 info pac numpy missing tensor current anaconda
原文地址:https://www.cnblogs.com/wanghui1994/p/10113314.html