yarn is having troubles with the network connection

后端 未结 12 1955
伪装坚强ぢ
伪装坚强ぢ 2021-02-12 19:02

I tried to install a package with yarn earlier today and I got this

yarn install
yarn install v1.9.4
[1/4]          


        
12条回答
  •  渐次进展
    2021-02-12 19:59

    I had the same issue and solved by following steps:

    Run the terminal command

    1. Clean npm cache
    2. npm cache clean --force
    3. set http_proxy=
    4. Set https_proxy=
    5. Yarn config delete proxy
    6. Npm config rm https-proxy
    7. Npm config rm proxy
    8. Restart your terminal
    9. yarn
    10. Yarn –network-timeout 100000

    Restart your terminal.

    it worked for me.

提交回复
热议问题