zoukankan      html  css  js  c++  java
  • 安装 cnpm 或者 yarn 遇到的问题

    1、设置镜像源

    npm install cnpm -g --registry=https://registry.npm.taobao.org

    yarn config set registry https://registry.npm.taobao.org/

    把C:Users 用户名AppDataRoaming pm目录加入系统环境变量Path,然后重启即可。

    cnpm 和yarn都可能会有以下提示:

    yarn : File C:UsersxxyAppDataRoaming pmyarn.ps1 cannot be loaded because running scripts is disabled on this system. For more information

    PowerShell yarn : 无法加载文件 C:UsersAdminAppDataRoaming pmyarn.ps1,因为在此系统因为在此系统上禁止运行脚本。
    以管理员方式运行powershell


    2:使用命令更改计算机的执行策略

    PS C:UsersAdministrator> set-ExecutionPolicy RemoteSigned

    执行策略更改
    执行策略可帮助你防止执行不信任的脚本。更改执行策略可能会产生安全风险,如 https:/go.microsoft.com/fwlink/?LinkID=135170
    中的 about_Execution_Policies 帮助主题所述。是否要更改执行策略?
    [Y] 是(Y) [A] 全是(A) [N] 否(N) [L] 全否(L) [S] 暂停(S) [?] 帮助 (默认值为“N”): y

    3:查看执行策略

    get-ExecutionPolicy

  • 相关阅读:
    List,Set,Map初级学习
    String,StringBuffer,StringBuilder 的使用
    activity跳转
    JSON与List之间的转换
    子线程更新UI
    数据库查询关键字显示所有结果
    Java数据类型转换1
    git 操作
    MySql导出表结构
    springBoot双数据源配置
  • 原文地址:https://www.cnblogs.com/xybs/p/12682085.html
Copyright © 2011-2022 走看看