问题描述
我想使用anaconda使用python 3.5安装tensorflow,但我不知道哪个anaconda版本具有python 3.5.当我转到anaconda下载页面时,会看到Anaconda 4.3.1,该版本具有python的3.6或2.7版本.
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.然后,您可以从文档
You can install any current version of Anaconda. You can then make a conda environment with your particular needs from the documentation
conda create -n tensorflowproject python=3.5 tensorflow ipython
此命令具有特定于python的版本,当此tensorflowproject环境更新时,它将升级至Python 3.5999999999,但从不升级至3.6.然后,您可以使用任一方法切换到您的环境
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
source activate tensorflowproject
对于linux/mac或
for linux/mac or
activate tensorflowproject
在Windows上
这篇关于带有Python 3.5的Anaconda版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!