美文网首页
无法执行vue初始化命令

无法执行vue初始化命令

作者: 哈哈乐乐WXT | 来源:发表于2019-10-30 16:07 被阅读0次

    今天vue 初始化项目时提示错误
    执行命令:

    • npm install -g vue-cli
      执行下面命令时报错
    • vue init webpack-simple my-project
    vue : 无法加载文件 C:\Users\36910\AppData\Roaming\npm\vue.ps1,因为在此系统上禁止运行脚本。有关详细信息
    ,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
    所在位置 行:1 字符: 1
    + vue init webpack-simple myFirstDemo
    + ~~~
        + CategoryInfo          : SecurityError: (:) [],PSSecurityException
        + FullyQualifiedErrorId : UnauthorizedAccess
    

    网上搜索了一下原因,解决(参照以下方式解决)

    原因:在此系统禁止运行脚本,这是笔记本禁止运行脚本,
    解决办法:
    1.管理员身份打开

    2 image

    3.输入set-ExecutionPolicy RemoteSigned

    image

    4.选择Y 或者A ,就好了

    参考地址:
    https://blog.csdn.net/wqnmlgbsz/article/details/100654258

    相关文章

      网友评论

          本文标题:无法执行vue初始化命令

          本文链接:https://www.haomeiwen.com/subject/glaovctx.html