首页 > 代码库 > conda 安装 tensorflow

conda 安装 tensorflow

Installing tensorflow

Installing tensorflow from the conda-forge channel can be achieved by adding conda-forge to your channels with:

conda config --add channels conda-forge

Once the conda-forge channel has been enabled, tensorflow can be installed with:

conda install tensorflow

It is possible to list all of the versions of tensorflow available on your platform with:

conda search tensorflow --channel conda-forge


参考:https://github.com/conda-forge/tensorflow-feedstock

conda 安装 tensorflow