下载rstdio中miniconda tensorflow 环境
时间: 2024-03-13 16:35:37 浏览: 100
你可以按照以下步骤下载和安装 Miniconda 和 TensorFlow 环境:
1. 下载 Miniconda 安装包:在浏览器中打开 https://docs.conda.io/en/latest/miniconda.html,选择适合你操作系统的版本,下载并安装。
2. 安装 Miniconda:按照安装程序的指示安装 Miniconda。
3. 创建 TensorFlow 环境:在命令行中输入以下命令创建一个名为 tensorflow 的 Python3 环境,并安装 TensorFlow:
```
conda create -n tensorflow python=3.7
conda activate tensorflow
conda install tensorflow
```
4. 测试 TensorFlow 环境:在命令行中输入以下代码,测试 TensorFlow 是否正常工作:
```
python
import tensorflow as tf
tf.compat.v1.disable_eager_execution()
hello = tf.constant('Hello, TensorFlow!')
sess = tf.compat.v1.Session()
print(sess.run(hello))
```
如果一切正常,你应该看到 "Hello, TensorFlow!" 的输出。
希望这可以帮助你下载并安装 Miniconda 和 TensorFlow 环境。
阅读全文