bs-redis-desktop-client icon indicating copy to clipboard operation
bs-redis-desktop-client copied to clipboard

Linux执行npm install时卡在sill idealTree buildDeps

Open xjwanghao opened this issue 1 year ago • 1 comments

尝试了更换nodejs版本,更换源,使用npm config set strict-ssl false等方法都不行,请问可能因为什么呢

xjwanghao avatar Mar 15 '24 07:03 xjwanghao

如果是在国内的话,建议开个代理 命令行执行

#linux or macos
export https_proxy=http://地址:端口  http_proxy=http://地址:端口 all_proxy=socks5://地址:端口
#windows ps
$Env:http_proxy="http://127.0.0.1:7890";$Env:https_proxy="http://127.0.0.1:7890"
#windows cmd
set http_proxy=http://127.0.0.1:7890 & set https_proxy=http://127.0.0.1:7890

然后再

npm install

fuyoo avatar May 25 '24 06:05 fuyoo