web-dev-qa-db-ja.com

糸はネットワーク接続に問題がある

本日、糸でパッケージをインストールしようとしましたが、これを手に入れました

yarn install
yarn install v1.9.4
[1/4] ????  Resolving packages...
info There appears to be trouble with your network connection. Retrying...
info There appears to be trouble with your network connection. Retrying...
info There appears to be trouble with your network connection. Retrying...
info There appears to be trouble with your network connection. Retrying...
error An unexpected error occurred: "https://registry.yarnpkg.com/eslint: getaddrinfo ENOTFOUND     registry.yarnpkg.com registry.yarnpkg.com:443".
info If you think this is a bug, please open a bug report with the information provided in "/Users/daviddragovacz/Documents/GitHub/react-    project-one/dragi/yarn-error.log".
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.

誰もこれを修正する方法を知っていますか?私のネットワークは大丈夫のようで、遅くはありません。

それは私が試したすべてのパッケージで起こります。

package.json

{
    "name": "dragi",
    "version": "0.1.0",
    "private": true,
    "dependencies": {
        "axios": "^0.18.0",
        "prop-types": "^15.6.2",
        "react": "^16.4.2",
        "react-dom": "^16.4.2",
        "react-redux": "^5.0.7",
        "react-router": "^4.3.1",
        "react-router-dom": "^4.3.1",
        "react-scripts": "1.1.5",
        "redux": "^4.0.0",
        "redux-devtools-extension": "^2.13.5",
        "redux-thunk": "^2.3.0",
        "semantic-ui-css": "^2.3.3",
        "semantic-ui-react": "^0.82.3",
        "validator": "^10.7.0"
    },
    "scripts": {
        "start": "react-scripts start",
        "build": "react-scripts build",
        "test": "react-scripts test --env=jsdom",
        "eject": "react-scripts eject",
        "lint": "eslint src"
    },
    "devDependencies": {
        "eslint": "^5.5.0",
        "eslint-config-airbnb": "^17.1.0",
        "eslint-config-prettier": "^3.0.1",
        "eslint-plugin-import": "^2.14.0",
        "eslint-plugin-jsx-a11y": "^6.1.1",
        "eslint-plugin-prettier": "^2.6.2",
        "eslint-plugin-react": "^7.11.1",
        "prettier": "^1.14.2"
    },
    "proxy": "http://localhost:8080"
}

また、簡単なメモ:npm iは正常に動作します-糸だけに問題があります

5
dragi

cacheをクリアしてみてください

$ yarn cache clean
$ yarn // to install dependencies, no need for "yarn install"

アプローチ2

$ yarn install --network-timeout 1000000

リファレンス https://github.com/yarnpkg/yarn/issues/4890#issuecomment-358179301

10
Adeel Imran

ネットワークタイムアウトを増やしてみてください

yarn install --network-timeout 1000000

gitHubの問題でこれを見つけました https://github.com/yarnpkg/yarn/issues/489

5
RamKrish

別のエラーが発生しましたが、同じネットワーク接続の問題がありました。このスレッドを読みます: https://github.com/yarnpkg/yarn/issues/15

そして、私の問題を修正したnode/npmをアンインストール/再インストールすることになりました。ノードのインストールにも何か問題がありますか?

1
matcha

同様の問題について、何度か再試行してみました。

0
lwpro2

私もこれを得た。

yarn install --no-lockfileそしてそれは機能したので、ノードモジュールを再度削除し、yarn.lock。糸は私のアプリケーションの以前のバージョンでは問題がなかったため、糸のバグのように見えます。

0
JFA

インターネットの速度/接続の強さを確認してください。むらのある公衆無線LANを使用しているときにこの問題が発生しました。試行するたびにエラーをスローするのは別のパッケージであることに注意してください。そして、私がより速く/より安定したインターネットになると、この問題はなくなりました。 (パッケージは接続が不十分なほど大きすぎました)。

0
PolarisTLX