博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
安装npm出现Profile not found.的问题
阅读量:6304 次
发布时间:2019-06-22

本文共 1291 字,大约阅读时间需要 4 分钟。

hot3.png

安装命令:

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash

出现的问题,其实错误信息已经告诉我们解决方法了

=> nvm is already installed in /Users/qxian/.nvm, trying to update using git=> => Profile not found. Tried  (as defined in $PROFILE), ~/.bashrc, ~/.bash_profile, ~/.zshrc, and ~/.profile.=> Create one of them and run this script again=> Create it (touch ) and run this script again   OR=> Append the following lines to the correct file yourself:export NVM_DIR="/Users/qxian/.nvm"[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"  # This loads nvm=> Close and reopen your terminal to start using nvm

解决方法是新建个.bash_profile文件

qxiandeMacBook-Pro:~ qxian$ touch .bash_profile

新建完文件后,再次执行安装命令

qxiandeMacBook-Pro:~ qxian$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current                                 Dload  Upload   Total   Spent    Left  Speed100  7766  100  7766    0     0   3422      0  0:00:02  0:00:02 --:--:--  3424=> nvm is already installed in /Users/qxian/.nvm, trying to update using git=> => Appending source string to /Users/qxian/.bash_profile=> Close and reopen your terminal to start using nvm

自此,npm安装成功!

转载于:https://my.oschina.net/u/244918/blog/622351

你可能感兴趣的文章
SSL/TLS原理详解
查看>>
Docker 自定义SSH服务镜像
查看>>
JavaScript强化教程 —— Cocos2d-JS自动JSB绑定规则修改
查看>>
configure: error: in `/root/httpd-2.2.11/srclib/apr': c
查看>>
CentOS7搭建Kubernetes-dashboard管理服务
查看>>
buildroot下查找外部编译器通过ext-toolchain-wrapper调用的参数
查看>>
MySQL Replication 主主配置详细说明
查看>>
Linux的任务调度
查看>>
在Android studio中添加jar包方法如下
查看>>
iframe 在ie下面总是弹出新窗口解决方法
查看>>
分享10款漂亮实用的CSS3按钮
查看>>
安装nginx 常见错误及 解决方法
查看>>
Gorun8电子商城
查看>>
在之前链表的基础上改良的链表
查看>>
android编译系统makefile(Android.mk)写法
查看>>
MD5源代码C++
查看>>
Eclipse 添加 Ibator
查看>>
Linux中变量$#,$@,$0,$1,$2,$*,$$,$?的含义
查看>>
Python编程语言
查看>>
十四、转到 linux
查看>>