简体   繁体   中英

conda / miniconda distribution for Python 3.4

Miniconda发行版仅适用于 Python 3.8,我怎么能找到适用于 Windows 机器并与 python 3.4 兼容的东西?

If you just need a conda environment with python 3.4.

That is, you would install normal conda with python 3.8, create an environment with python 3.4:

>conda create --name py34 python=3.4 --channel free
>conda activate py34
>python
Python 3.4.5 |Continuum Analytics, Inc.| (default, Jul  5 2016, 14:53:07) [MSC v.1600 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>

More details here: How to install deprecated/unsupported Python 3.4 on conda environment? and Creating python 3.3 environment in Anaconda

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