問題描述
我想使用 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 環(huán)境更新時,它將升級到 Python 3.5999999999 但永遠不會升級到 3.6 .然后您使用任一切換到您的環(huán)境
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
在窗戶上
這篇關(guān)于帶有 Python 3.5 的 Anaconda 版本的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!