wp231957 发表于 2020-4-19 09:24:21

NPM INSTALL *** 死活安装不成功的解决办法

本帖最后由 wp231957 于 2020-4-19 09:28 编辑

解决办法其实也很简单,就是换镜像源

我搜到的网页提供了三种办法,我是一种成功一种失败,一种没测试,下面贴出成功的方案:

一、进入自己的工程目录:
       e:\wp>npm config set registry https://registry.npm.taobao.org
      这条命令输入完后,不会有提示,不会有错误信息10有89就是成功了
      不放心还可以测试一下:
      e:\wp>npm info underscore

underscore@1.10.2 | MIT | deps: none | versions: 39
JavaScript's functional programming helper library.
https://underscorejs.org

dist
.tarball: https://registry.npm.taobao.org/underscore/download/underscore-1.10.2.tgz
.shasum: 73d6aa3668f3188e4adb0f1943bd12cfd7efaaaf

maintainers:
- jashkenas <jashkenas@gmail.com>
- jridgewell <justin+npm@ridgewell.name>

dist-tags:
latest: 1.10.2stable: 1.10.2

published 2 weeks ago by jashkenas <jashkenas@gmail.com>

下面进行实测(安装模块测试):
e:\wp>npm install express --save
npm WARN wp@1.0.0 No description
npm WARN wp@1.0.0 No repository field.

+ express@4.17.1
added 49 packages from 36 contributors in 4.55s

e:\wp>

那么究竟成功没有呢,最后测试(导入包测试):
> require("express")
{
application: { more information.
    init: ,
    defaultConfiguration: ,
    lazyrouter: ,
    handle: ,
    use: ,
    route: ,
    engine: ,
    param: ,
ok没有任何问题,OVER

wp231957 发表于 2020-4-19 10:06:19

补充 python /pipinstall   更换镜像源(没有测试,先标记一下)

临时使用
pip install some-package -i https://mirrors.aliyun.com/pypi/simple/

# 豆瓣
https://pypi.doubanio.com/simple/
# 阿里云   
https://mirrors.aliyun.com/pypi/simple/
# 清华大学
https://pypi.tuna.tsinghua.edu.cn/simple/
https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/


设为默认
升级 pip 到最新的版本后进行配置:
pip install pip -U
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
页: [1]
查看完整版本: NPM INSTALL *** 死活安装不成功的解决办法