一 安装node.js
- 指定版本
sudo apt-get update
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
//settup_12.x 只需要把数字换掉就可以了(需要安装的版本号)
sudo apt-get install -y nodejs
- 查看版本
node -v
npm -v
- Ubuntu 卸载 Node.Js
sudo apt-get remove nodejs
二 安装淘宝npm
npm install -g cnpm --registry=https://registry.npm.taobao.org
三 安装vue
版本 2.X
cnpm install --g vue-cli
版本 4.X
cnpm install @vue/cli -g
四 创建一个项目
-
第二步
-
第三步 选择—>手动
-
选择 vuex Router choose Vue version Babel
关闭 linter|formatter -
下一步---->创建项目-----> 创建项目,不保存预设
五 版本记录
六 问题记录
问题1 在终端输入 vue ui 没有启动vue 的可视化界面
vue版本低 3.X 版本一下不支持可视化创建项目
问题2 Cannot read property ‘indexOf’ of undefined
并有:
npm ERR! Your cache folder contains root-owned files, due to a bug in
npm ERR! previous versions of npm which has since been addressed.
npm ERR! To permanently fix this problem, please run:
npm ERR! sudo chown -R 1000:1000 “/home/huadian/.npm”
原因是 /home/huadian/.npm权限不够,放开权限即可.
1
1
1
转载:https://blog.csdn.net/Mihu_Tutu/article/details/116793416
查看评论