*windows环境下cnpm安装依赖 vue前端项目搭建*

windows环境下cnpm安装依赖 vue前端项目搭建

一。.安装npm install nrm -g 依赖报错信息

npm ERR! code ECONNRESET
npm ERR! syscall read
npm ERR! errno ECONNRESET
npm ERR! network request to https://registry.npmjs.org/package failed, reason: read ECONNRESET
npm ERR! network This is a problem related to network connectivity.
npm ERR! network In most cases you are behind a proxy or have bad network settings.
npm ERR! network
npm ERR! network If you are behind a proxy, please make sure that the
npm ERR! network ‘proxy’ config is set properly. See: ‘npm help config’

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Administrator\AppData\Local\npm-cache_logs\2022-03-29T16_20_05_831Z-debug-0.log

D:\Program Files>npm install package@latest --save
npm ERR! code ECONNRESET
npm ERR! syscall read
npm ERR! errno ECONNRESET
npm ERR! network request to https://registry.npmjs.org/package failed, reason: read ECONNRESET
npm ERR! network This is a problem related to network connectivity.
npm ERR! network In most cases you are behind a proxy or have bad network settings.
npm ERR! network
npm ERR! network If you are behind a proxy, please make sure that the
npm ERR! network ‘proxy’ config is set properly. See: ‘npm help config’

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Administrator\AppData\Local\npm-cache_logs\2022-03-29T16_22_18_637Z-debug-0.log
1. 执行命令 npm config set proxy http://:
2. 在次执行 npm install nrm -g
3. 查看镜像是否安装 :nrm ls
4. 插入vue cli :npm install -g @vue/cli
5. 打开windows Powershell cd到要创建项目的目录
6. 若遇到如下报错:
vue : 无法将“vue”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,
然后再试一次。
所在位置 行:1 字符: 1

  • vue create yeb
  •   + CategoryInfo          : ObjectNotFound: (vue:String) [], CommandNotFoundException
      + FullyQualifiedErrorId : CommandNotFoundException
     6.1 执行set-ExecutionPolicy RemoteSigned   然后选择y
    

执行策略更改
执行策略可帮助你防止执行不信任的脚本。更改执行策略可能会产生安全风险,如 https:/go.microsoft.com/fwlink/?LinkID=135170
中的 about_Execution_Policies 帮助主题所述。是否要更改执行策略?
[Y] 是(Y) [A] 全是(A) [N] 否(N) [L] 全否(L) [S] 暂停(S) [?] 帮助 (默认值为“N”): Y
7.验证一下是否成功了:输入get-ExecutionPolicy,系统回复Restricted,表示状态是禁止的。
若是提示了 RemoteSigned 就代表成功了。

猜你喜欢

转载自blog.csdn.net/weixin_47062100/article/details/123836320