适用于Python 3.4的conda / miniconda发行版

问题描述

Miniconda发行版仅适用于Python 3.8,如何找到适用于Windows机器并与python 3.4兼容的内容?

解决方法

如果您只需要使用python 3.4的conda环境。

也就是说,您将使用python 3.8安装普通的conda,并使用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.
>>>

此处有更多详细信息: How to install deprecated/unsupported Python 3.4 on conda environment?Creating python 3.3 environment in Anaconda

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...