Anaconda version with Python 3.5

前端 未结 7 894
醉酒成梦
醉酒成梦 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:40

    Per this announcement, Anaconda upgraded to Python 3.6 starting with version 4.3, so... you probably want the 4.2.0 package from the installer archive.

    0 讨论(0)
  • 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

    0 讨论(0)
  • 2020-12-04 19:47

    According to the official docu it's recommended to downgrade the whole Python environment:

    conda install python=3.5
    
    0 讨论(0)
  • 2020-12-04 19:48

    Anacoda3-4.2.0 Uses python 3.5 You can find the same in the link given below : https://repo.continuum.io/archive/Anaconda3-4.2.0-Windows-x86_64.exe

    I faced the same problem and found the correct version by checking the available Anaconda 4.2.0 distributions in installer archive here

    0 讨论(0)
  • 2020-12-04 19:54

    It is very simple, first, you need to be inside the virtualenv you created, then to install a specific version of python say 3.5, use Anaconda, conda install python=3.5

    In general you can do this for any python package you want

    conda install package_name=package_version

    0 讨论(0)
  • 2020-12-04 19:58

    command install:

    • python3.5: conda install python=3.5
    • python3.6: conda install python=3.6

    download the most recent Anaconda installer:

    • python3.5: Anaconda 4.2.0
    • python3.6: Anaconda 5.2.0

    reference from anaconda doc:

    • How do I get Anaconda with Python 3.5 or 3.6?
    0 讨论(0)
提交回复
热议问题