带有 Python 3.5 的 Anaconda 版本
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/42978349/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Anaconda version with Python 3.5
提问by sammy ongaya
I want to install tensorflow with python 3.5 using anaconda but I don't know which anaconda version has python 3.5. When I go to anaconda download page am presented with Anaconda 4.3.1 which has either version 3.6 or 2.7 of python
我想使用 anaconda 安装带有 python 3.5 的 tensorflow,但我不知道哪个 anaconda 版本有 python 3.5。当我转到 anaconda 下载页面时,会看到 Anaconda 4.3.1,它有 3.6 或 2.7 版的 python
回答by Back2Basics
You can install any current version of Anaconda. You can then make a conda environment with your particular needs from the documentation
您可以安装任何当前版本的 Anaconda。然后,您可以从文档中根据您的特定需求创建 conda 环境
conda create -n tensorflowproject python=3.5 tensorflow ipython
This command has a specific version for python and when this tensorflowproject environment gets updated it will upgrade to Python 3.5999999999 but never go to 3.6 . Then you switch to your environment using either
这个命令有一个特定的 python 版本,当这个 tensorflowproject 环境更新时,它将升级到 Python 3.5999999999 但永远不会升级到 3.6 。然后您使用任一方法切换到您的环境
source activate tensorflowproject
for linux/mac or
对于 linux/mac 或
activate tensorflowproject
on windows
在窗户上
回答by evadeflow
Per this announcement, Anaconda upgraded to Python 3.6 starting with version 4.3, so... you probably want the 4.2.0 package from the installer archive.
根据此公告,Anaconda 从 4.3 版开始升级到 Python 3.6,因此...您可能需要安装程序存档中的 4.2.0 包。
回答by Boern
According to the official docuit's recommended to downgrade the whole Python environment:
根据官方文档,建议降级整个 Python 环境:
conda install python=3.5
回答by Saikat Das
Anacoda3-4.2.0 Uses python 3.5 You can find the same in the link given below : https://repo.continuum.io/archive/Anaconda3-4.2.0-Windows-x86_64.exe
Anacoda3-4.2.0 使用 python 3.5 您可以在下面给出的链接中找到相同的内容:https://repo.continuum.io/archive/Anaconda3-4.2.0-Windows-x86_64.exe
I faced the same problem and found the correct version by checking the available Anaconda 4.2.0 distributions in installer archive here
我遇到了同样的问题,并通过在此处检查安装程序存档中可用的 Anaconda 4.2.0 发行版找到了正确的版本
回答by Colin Wang
command install:
命令安装:
- python3.5:
conda install python=3.5
- python3.6:
conda install python=3.6
- python3.5:
conda install python=3.5
- python3.6:
conda install python=3.6
download the most recent Anaconda installer:
下载最新的 Anaconda 安装程序:
- python3.5:
Anaconda 4.2.0
- python3.6:
Anaconda 5.2.0
- python3.5:
Anaconda 4.2.0
- python3.6:
Anaconda 5.2.0
reference from anaconda doc:
来自 anaconda 文档的参考:
回答by alchemy
To highlight a few points:
强调几点:
The docs recommend using an install environment: https://conda.io/docs/user-guide/install/download.html#choosing-a-version-of-anaconda-or-miniconda
文档建议使用安装环境:https: //conda.io/docs/user-guide/install/download.html#choosing-a-version-of-anaconda-or-miniconda
The version archive is here: https://repo.continuum.io/archive/
版本存档在这里:https: //repo.continuum.io/archive/
The version history is here: https://docs.anaconda.com/anaconda/release-notes
版本历史在这里:https: //docs.anaconda.com/anaconda/release-notes
"Anaconda3 then its python 3.x and if it is Anaconda2 then its 2.x" - +1 papbiceps
“Anaconda3 然后是它的 python 3.x,如果它是 Anaconda2 那么它的 2.x” - +1 papbiceps
The version archive is sorted newest at the top, but Anaconda2 ABOVEAnaconda3.
该版本档案进行排序在顶部最新的,但Anaconda2以上Anaconda3。