Python 3.4 64-bit download

How to download Anaconda with previous versions of Python, such as the 64-bit version of Python 3.4.

The reason is that the Bloomberg API is only available up to 3.4, and 3.5 has not yet been released.

+4
source share
2 answers

I recommend installing the latest version of Anaconda and using virtual environments . That way you would create a Python 3.4 environment.

This is documented here . There are also these docs that describe basically the same approach, but are more specifically aimed at the python2 / 3 issue. (Link mentioned in comments)

, Anaconda (, condas :

conda create --name py34 python=3.4

source activate py34  # linux
activate py34         # windows

(: ) (python, pip, conda) ). , conda install matplotlib 3.4!

:

source activate root  # linux
activate root         # windows

- conda install matplotlib .

+5

Python 3.4.2, Python 3.4.3, 3.4

$ conda update python

Python , 3.5, Python:

$ conda install python=3.5

, :)

0

Source: https://habr.com/ru/post/1652251/


All Articles