How can I download Anaconda for python 3.6(如何下载适用于 python 3.6 的 Anaconda)
问题描述
我正在研究 Tensorflow 对象检测项目,为此我使用 Anaconda 3 和 python 3.7,但在运行对象检测演示时遇到了一些问题,我在 stackoverflow 上阅读了几篇文章,发现它可以通过以下方式解决将 Anaconda 与 python 3.6 一起使用,但此版本在 Anaconda 的 下载 页面上不可用,有只有两个版本,即 Python 3.7 和 Python 2.7,但我需要 Python 3.6.
I was working on Tensorflow object detection project, for this I am using Anaconda 3 with python 3.7 but I am facing some issues while running object detection demo, I read couple of posts here on stackoverflow and found that it can be solved by using Anaconda with python 3.6 but this version is not available at Anaconda's download page, there are only two versions i.e for Python 3.7 and Python 2.7 but I need for Python 3.6.
任何帮助都会很棒.
推荐答案
如建议 这里,通过安装最后一个 anaconda,您可以创建一个环境,就像 Cleb 解释的那样 或降级python:
As suggested here, with an installation of the last anaconda you can create an environment just like Cleb explained or downgrade python :
conda install python=3.6.0
使用第二种解决方案,您可能会遇到与其他软件包不兼容的问题.我自己测试过,没有遇到任何问题,但我猜这取决于您安装的软件包.
With this second solution, you may encounter some incompatibility issues with other packages. I tested it myself and did not encounter any issue but I guess it depends on the packages you installed.
如果您不想处理环境或遇到不兼容问题,可以在此处下载任何 Anaconda 版本:https://repo.continuum.io/archive/.例如,Anaconda3-5.1.0-XXX 或 Anaconda3-5.2.0-XXX 提供 python 3.6(后缀 XXX 取决于您的操作系统).
If you don't want to handle environments or face incompatibilities issues, you can download any Anaconda version here: https://repo.continuum.io/archive/. For example, Anaconda3-5.1.0-XXX or Anaconda3-5.2.0-XXX provides python 3.6 (the suffix XXX depends on your OS).
要了解anaconda包中提供了哪些python,可以访问Release笔记页面.它提供所有 anaconda 版本的更新.找到你的并寻找线
To know which python is provided in an anaconda package, you can visit the Release notes page. It provides the updates for the all anaconda versions. Find yours and look for the line
蟒蛇A.B.C->X.Y.Z
python A.B.C -> X.Y.Z
其中 A.B.C 是以前的版本,X.Y.Z 是更新后的 python 版本.
where A.B.C is the previous version and X.Y.Z is the updated python version.
这篇关于如何下载适用于 python 3.6 的 Anaconda的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何下载适用于 python 3.6 的 Anaconda
- 沿轴计算直方图 2022-01-01
- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01
- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01
- python check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- 如何将一个类的函数分成多个文件? 2022-01-01
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01
- python-m http.server 443--使用SSL? 2022-01-01
- padding='same' 转换为 PyTorch padding=# 2022-01-01
