GithubHelp home page GithubHelp logo

Comments (9)

cetindogu avatar cetindogu commented on June 10, 2024 1

Maybe i have coorperate networking problem, thanks for the answer, i will test in a public network

from cypress-realworld-app.

MikeMcC399 avatar MikeMcC399 commented on June 10, 2024 1

@cetindogu

The error you see could be caused by network access affecting the successful download of the Cypress binary.

from cypress-realworld-app.

MikeMcC399 avatar MikeMcC399 commented on June 10, 2024

@cetindogu

A typical log on Windows 11 Pro 22H2 looks like this, so I wonder why you are seeing something quite different on Windows 10:

$ yarn
yarn install v1.22.19
[1/5] Validating package.json...
[2/5] Resolving packages...
[3/5] Fetching packages...
[4/5] Linking dependencies...
warning " > @material-ui/[email protected]" has incorrect peer dependency "react@^16.8.0 || ^17.0.0".
warning " > @material-ui/[email protected]" has incorrect peer dependency "react-dom@^16.8.0 || ^17.0.0".
warning "@material-ui/core > @material-ui/[email protected]" has incorrect peer dependency "react@^16.8.0 || ^17.0.0".
warning "@material-ui/core > @material-ui/[email protected]" has incorrect peer dependency "react-dom@^16.8.0 || ^17.0.0".
warning "@material-ui/core > @material-ui/[email protected]" has incorrect peer dependency "react@^16.8.0 || ^17.0.0".
warning "@material-ui/core > @material-ui/[email protected]" has incorrect peer dependency "react-dom@^16.8.0 || ^17.0.0".
warning "@material-ui/core > @material-ui/[email protected]" has incorrect peer dependency "react@^16.8.0 || ^17.0.0".
warning "@material-ui/core > @material-ui/[email protected]" has incorrect peer dependency "react-dom@^16.8.0 || ^17.0.0".
warning " > @material-ui/[email protected]" has incorrect peer dependency "react@^16.8.0 || ^17.0.0".
warning " > @material-ui/[email protected]" has incorrect peer dependency "react-dom@^16.8.0 || ^17.0.0".
warning " > @material-ui/[email protected]" has incorrect peer dependency "react@^16.8.0 || ^17.0.0".
warning " > @material-ui/[email protected]" has incorrect peer dependency "react-dom@^16.8.0 || ^17.0.0".
warning " > @xstate/[email protected]" has incorrect peer dependency "react@^16.8.0 || ^17.0.0".
warning "aws-amplify > @aws-amplify/core > [email protected]" has unmet peer dependency "react-native@*".
warning "aws-amplify > @aws-amplify/analytics > @aws-sdk/client-firehose > @aws-sdk/middleware-retry > [email protected]" has unmet peer dependency "react-native@>=0.56".
warning " > [email protected]" has incorrect peer dependency "react@^16 || ^17".
warning " > [email protected]" has incorrect peer dependency "react-dom@^16 || ^17".
warning " > [email protected]" has incorrect peer dependency "react@^15.3.0 || ^16.0.0-alpha".
warning "react-infinite-calendar > [email protected]" has incorrect peer dependency "[email protected] || 16.x".
warning "react-infinite-calendar > [email protected]" has incorrect peer dependency "react@^15.0.0 || ^16.0.0".
warning "react-infinite-calendar > [email protected]" has incorrect peer dependency "react-dom@^15.0.0 || ^16.0.0".
warning "react-infinite-calendar > [email protected]" has incorrect peer dependency "react@^0.14.0 || ^15.0.0".
warning " > @babel/[email protected]" has unmet peer dependency "@babel/core@^7.0.0-0".warning "@babel/plugin-proposal-private-property-in-object > @babel/[email protected]" has unmet peer dependency "@babel/core@^7.0.0".
warning "@babel/plugin-proposal-private-property-in-object > @babel/[email protected]" has unmet peer dependency "@babel/core@^7.0.0-0".
warning "@cypress/code-coverage > @cypress/[email protected]" has unmet peer dependency "@babel/core@^7.0.1".
warning "@cypress/code-coverage > @cypress/[email protected]" has unmet peer dependency "@babel/preset-env@^7.0.0".
warning "@cypress/code-coverage > @cypress/[email protected]" has unmet peer dependency "babel-loader@^8.0.2 || ^9".
warning "@cypress/code-coverage > @cypress/[email protected]" has unmet peer dependency "webpack@^4 || ^5".
warning " > @cypress/[email protected]" has unmet peer dependency "html-webpack-plugin@>=4".
warning " > @cypress/[email protected]" has unmet peer dependency "webpack@>=4".
warning " > @cypress/[email protected]" has unmet peer dependency "webpack-dev-server@>=3.0.0".
warning " > @percy/[email protected]" has incorrect peer dependency "cypress@^3 || ^4 || ^5 || ^6".
warning "eslint-config-react-app > [email protected]" has unmet peer dependency "@babel/plugin-syntax-flow@^7.14.5".
warning "eslint-config-react-app > [email protected]" has unmet peer dependency "@babel/plugin-transform-react-jsx@^7.14.9".
warning " > [email protected]" has incorrect peer dependency "graphql@^14.7.0 || ^15.3.0".
warning Workspaces can only be enabled in private projects.
[5/5] Building fresh packages...
$ husky install && patch-package
husky - Git hooks installed
patch-package 7.0.0
Applying patches...
@material-ui/[email protected][email protected] ✔
Done in 300.57s.

from cypress-realworld-app.

MikeMcC399 avatar MikeMcC399 commented on June 10, 2024

@cetindogu

I also tested on Windows 10 and found no problem.

Perhaps your clone of the repo is not identical to the original develop branch? You could try resetting it or cloning a fresh new copy.

from cypress-realworld-app.

MikeMcC399 avatar MikeMcC399 commented on June 10, 2024

@cetindogu

As a cross-check you might like to execute yarn install --force

$ yarn install --force
yarn install v1.22.19
[1/5] Validating package.json...
[2/5] Resolving packages...
[3/5] Fetching packages...
[#######################-------------------------------------------------------------------------------------------------] 372/1928

I am only seeing 1928 and it looks like you are seeing 1937, which makes me think that perhaps your copy is not 100% the same as the original.

from cypress-realworld-app.

cetindogu avatar cetindogu commented on June 10, 2024

@cetindogu

As a cross-check you might like to execute yarn install --force

$ yarn install --force
yarn install v1.22.19
[1/5] Validating package.json...
[2/5] Resolving packages...
[3/5] Fetching packages...
[#######################-------------------------------------------------------------------------------------------------] 372/1928

I am only seeing 1928 and it looks like you are seeing 1937, which makes me think that perhaps your copy is not 100% the same as the original.

İ tried both yarn and npm, no more edit, just cloned then yarn command, so i am sure it is network access problem

from cypress-realworld-app.

MikeMcC399 avatar MikeMcC399 commented on June 10, 2024

@cetindogu

Were you able to resolve your issue?

from cypress-realworld-app.

cetindogu avatar cetindogu commented on June 10, 2024

Not yet.

from cypress-realworld-app.

MikeMcC399 avatar MikeMcC399 commented on June 10, 2024

@cetindogu

Maybe i have coorperate networking problem, thanks for the answer, i will test in a public network

We didn't hear anything more from you and the problem you reported has not been mentioned by any other users, so I suggest to close this issue.

from cypress-realworld-app.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.