Featured image of post cnpm安装和问题解决

cnpm安装和问题解决

在 Windows 环境下安装 cnpm,以及在使用过程中遇到的常见问题和解决方案

1.安装cnpm

win+R​输入cmd​,然后点击确定
image

然后输入下面的命令

1
npm install -g cnpm --registry=https://registry.npmmirror.com

2.使用

基本和npm一样

只是在原来npm的基础上在最前面加了一个c

举例:

安装模块

1
cnpm install 模块名

在vscode中使用cnpm时遇到的问题

问题1

PS C:\Users\Never7\Desktop\clcok> cnpm install
cnpm : 无法加载文件 E:\node-v16.18.0-win-x64\node_global\cnpm.ps1,因为在此系统上禁止运行脚本。有 详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。

所在位置 行:1 字符: 1

+cnpm install

+CategoryInfo : SecurityError: (:) [],PSSecurityException

+FullyQualifiedErrorId : UnauthorizedAccess

image

解决方案

打开PowerShell(以管理员身份运行),输入以下命令

1
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser

然后提示是否改变执行策略,输入y继续

image

问题2

提示你要如何打开这个文件?

image

解决方案

输入

1
get-command npm

然后会得到一个文件位置

image​打开这个目录,发现这个文件是0KB,然后删除即可

image

Licensed under CC BY-NC-SA 4.0
陇ICP备2023000020号-3
使用 Hugo 构建
主题 StackJimmy 设计