conda info -e
# 指定python版本爲2.7
conda create -n env_name python=2.7
# 同時安裝必要的包
conda create -n env_name numpy matplotlib python=2.7
# linux/Mac下須要使用source activate env_name
activate env_name
#退出環境
deactivate env_name
conda remove -n env_name --all
activate env_nameconda install pandas
# 安裝anaconda發行版中全部的包
conda install anaconda
conda install -n env_name pandas
conda list
# 指定查看某環境下安裝的package
conda list -n env_name
conda search pyqtgraph
conda update numpy
conda update anaconda
conda remove numpy
Installing tensorflow
from the conda-forge
channel can be achieved by adding conda-forge
to your channels with:python
conda config --add channels conda-forge
Once the conda-forge
channel has been enabled, tensorflow
can be installed with:linux
conda install tensorflow
It is possible to list all of the versions of tensorflow
available on your platform with:git
參考:https://github.com/conda-forge/tensorflow-feedstockconda search tensorflow --channel conda-forge