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
基础教程推荐
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 包装空间模型 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 求两个直方图的卷积 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
