Anaconda version with Python 3.5(带有 Python 3.5 的 Anaconda 版本)
问题描述
我想使用 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
在窗户上
这篇关于带有 Python 3.5 的 Anaconda 版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:带有 Python 3.5 的 Anaconda 版本
基础教程推荐
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
