Anaconda version with Python 3.5

前端 未结 7 938
醉酒成梦
醉酒成梦 2020-12-04 18:59

I want to install tensorflow with python 3.5 using anaconda but I don\'t know which anaconda version has python 3.5. When I go to anaconda download page am presented with An

7条回答
  •  南笙
    南笙 (楼主)
    2020-12-04 19:41

    You can install any current version of Anaconda. You can then make a conda environment with your particular needs from the documentation

    conda create -n tensorflowproject python=3.5 tensorflow ipython
    

    This command has a specific version for python and when this tensorflowproject environment gets updated it will upgrade to Python 3.5999999999 but never go to 3.6 . Then you switch to your environment using either

    source activate tensorflowproject
    

    for linux/mac or

    activate tensorflowproject
    

    on windows

提交回复
热议问题