Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anaconda version with Python 3.5

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 Anaconda 4.3.1 which has either version 3.6 or 2.7 of python

like image 345
sammy ongaya Avatar asked Mar 23 '17 14:03

sammy ongaya


People also ask

How do you get Python 3.5 in Anaconda?

Getting Anaconda Or download the latest version of Anaconda and run the following command to install Python 3.5 (or 3.6) in the root environment: conda install python=3.5 or conda install python=3.6 . Or download the most recent Anaconda installer that included Python 3.5 (Anaconda 4.2. 0) or Python 3.6 (Anaconda 5.2.

What version of Python is in Anaconda 5.3 1?

0 for 64-bit Windows with Python 3.6.

What version of Python does Anaconda support?

Anaconda supports Python 3.7, 3.8, 3.9 and 3.10. The current default is Python 3.9.


1 Answers

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

like image 160
Back2Basics Avatar answered Oct 02 '22 08:10

Back2Basics