-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nvm 设置下载 node 的镜像地址 #7
Comments
牛! |
Good!!! |
顶顶顶! |
Good Job! |
设个临时的环境变量就可以了,非 windows
|
如果嫌更换npm源麻烦,推荐用安装 nrm, 命令直接更换 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
在 windows 上安装 nvm 后准备安装 node,输入
nvm install 6.9.2
后就一直点点点…经验告诉我(不要问我经验是谁)等到最后还是安装失败(ಥ _ ಥ)
在命令行输入 nvm 能看到
nvm 下载 node 的地址用的是
https://nodejs.org/dist/
,下载 npm 的地址用的是https://github.com/npm/npm/archive/
。这些镜像在国外,在国内由于众所周知的原因下载很慢,好在淘宝弄了一个镜像库,好开心,果断换上……不过马上就悲伤的发现
nvm node_mirror
和nvm npm_mirror
命令都不管用,我用的是 nvm-windows,不确定 mac 和 linux 上有没有问题,不过机智如我知道肯定有其他的解决办法看这:在 nvm 的安装路径下,找到 settings.txt,在后面加上这两行
重启终端后再安装速度飞起,安装完成后就能看到所有和正在用的 node 版本了
λ nvm list * 6.9.2 (Currently using 64-bit executable)
这时候我兴高采烈地开始装东西了,输入
出来血红的
ERR!
又让我傻眼了,尼玛不是设置了淘宝的镜像吗,怎么不管用啊……且慢,前面设置的其实是安装 npm 的镜像,而现在是用 npm 去安装 package,所以得设置让 npm 知道去哪获取 package:
λ npm config set registry https://registry.npm.taobao.org
这时候再安装又可以飞起了。
Update: 呃,mac 和 linux 版 nvm 就没有 node_mirror & npm_mirror 命令 😂 ,设置下载 node 镜像地址的方式是
将等号后面地址换成淘宝镜像(https://npm.taobao.org/mirrors/node)就可以了 😄 详见➡️
The text was updated successfully, but these errors were encountered: