anaconda - Python 3.4 64-bit download -
how can download anaconda previous python versions python 3.4 64-bit.
the reason bloomberg api available 3.4 , 3.5 not out yet.
i recommend installing newest anaconda version , using virtual-environments. way, set python 3.4 environment.
this documented here. there these docs, describing same approach, targeting more python2/3 problem. (link mentioned in comments)
so after installing anaconda (let's assume, condas binaries in path:
conda create --name py34 python=3.4
then can used with
source activate py34 # linux activate py34 # windows
during activation (or: while activated), binaries (python, pip, conda) in path). means using conda install matplotlib
install 3.4
version!
after doing:
source activate root # linux activate root # windows
something conda install matplotlib
install base-version.
Comments
Post a Comment