简体   繁体   中英

Python 3.4 64-bit download

How can I download Anaconda with previous Python versions like Python 3.4 64-bit.

The reason is Bloomberg API is only available up to 3.4 and 3.5 is not out yet.

I recommend installing the newest Anaconda version and using virtual-environments . This way, you would set up a Python 3.4 environment.

This is documented here . There are also these docs , which are describing mostly the same approach, but are targeting more specifically the python2/3 problem. (Link mentioned in the comments)

So after installing Anaconda (let's assume, condas binaries are in the path:

conda create --name py34 python=3.4

Then it can be used with

source activate py34  # linux
activate py34         # windows

During activation (or: while activated), the binaries (python, pip, conda) will be in the path). This means using conda install matplotlib will install to the 3.4 version!

After doing:

source activate root  # linux
activate root         # windows

something like conda install matplotlib will install to the base-version.

I recommend installing the newest Anaconda version and using virtual-environments. This way, you would set up a Python 3.4 environment.

If you are in an environment with Python version 3.4.2, this command will update Python to 3.4.3, which is the latest version in the 3.4 branch

$ conda update python

This command will upgrade Python to another branch such as 3.5 by installing that version of Python:

$ conda install python=3.5

Hope that helps :)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM