标题从零创建一个vue2项目,项目中使用TensorFlow.js识别手写文字
- npm切换到淘宝镜像
npm config set registry https://registry.npm.taobao.org
- 安装@vue/cli -g
npm install -g @vue/cli
- 检查是否安装成功
vue -V
- 创建项目
vue create 项目名
- 安装TensorFlow
npm install @tensorflow/tfjs-core @tensorflow/tfjs-backend-webgl @tensorflow/tfjs-converter @tensorflow/tfjs-backend-cpu
6.启动项目
npm run serve