Mac全局安装cnpm及环境配置 cnpm: command not found 的解决方案

cnpm不是内部命令 cnpm: command not found 的解决方案
command not found这种问题一般有两个原因:
1、命令没有安装成功
2、环境变量没有配置

安装命令

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

配置cnpm的环境变量
一.新建并打开 .bash_profile 文件

1|cd  ~
2|touch .bash_profile
3|open .bash_profile

二、添加npm模块安装位置

export PATH=$PATH:/Volumes/Development/code/node_modules/bin

三、保存后退出,刷新配置文件使其生效。

source .bash_profile

你可能感兴趣的:(Mac全局安装cnpm及环境配置 cnpm: command not found 的解决方案)