Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

install anaconda python 2.7 and 3.6

conda create --name py27python=2.7
conda create --name py36 python=3.6
Comment

anaconda python 3.6 download

As suggested here, with an installation of the last anaconda you can create an environment just like Cleb explained or downgrade python :

conda install python=3.6.0
With this second solution, you may encounter some incompatibility issues with other packages. I tested it myself and did not encounter any issue but I guess it depends on the packages you installed.

If you don't want to handle environments or face incompatibilities issues, you can download any Anaconda version here: https://repo.continuum.io/archive/. For example, Anaconda3-5.1.0-XXX or Anaconda3-5.2.0-XXX provides python 3.6 (the suffix XXX depends on your OS).

To know which python is provided in an anaconda package, you can visit the Release notes page. It provides the updates for the all anaconda versions. Find yours and look for the line

python A.B.C -> X.Y.Z

where A.B.C is the previous version and X.Y.Z is the updated python version.
Comment

PREVIOUS NEXT
Code Example
Python :: python test if list of dicts has key 
Python :: python append variable to list 
Python :: python convert to hmac sha256 
Python :: connect mysql sql alchemy 
Python :: split list on every nth element python 
Python :: print with no newline 
Python :: ffill python 
Python :: python autocorrelation plot 
Python :: legend text color matplotlib 
Python :: method for detect that a float number is integer in python 
Python :: numpy random for string 
Python :: next() python 
Python :: question command python 
Python :: get dict values in list python 
Python :: save screenshot of screen in pygame 
Python :: open word document python 
Python :: math domain error python 
Python :: remove prefix in python 3.6 
Python :: how to make a loading gif in pyqt5 
Python :: selenium chrome options suppress warnings python 
Python :: how to run python file from cmd 
Python :: python uuid 
Python :: python max function with lambda 
Python :: virtual mic with python 
Python :: is tuple immutable in python 
Python :: boids algorithm 
Python :: python move and rename files 
Python :: python calculator file size to megabytes 
Python :: automate boring stuff with python 
Python :: how to use query_params in get_object djangorestframework 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =