安装 TensorFlow.js:
时间: 2023-08-13 20:03:08 浏览: 175
以下是安装 TensorFlow.js 的步骤:
1. 首先,确保您已经安装了 Node.js,可以在终端命令行中输入以下命令检查是否安装了 Node.js:
```
node -v
```
2. 然后,使用 npm 命令安装 TensorFlow.js:
```
npm install @tensorflow/tfjs
```
3. 如果您想使用 GPU 版本的 TensorFlow.js,可以使用以下命令安装:
```
npm install @tensorflow/tfjs-node-gpu
```
4. 安装完成后,您可以在项目中引入 TensorFlow.js:
```
import * as tf from '@tensorflow/tfjs';
```
阅读全文