Requires Babel "7.0.0-0" but was loaded with "6.26.3" Requires Babel "7.0.0-0" but was loaded with "6.26.3" reactjs reactjs

Requires Babel "7.0.0-0" but was loaded with "6.26.3"


Test which version you are running with cmd

babel -V

If it is not verion 7 or higher

npm uninstall babel-cli -gnpm uninstall babel-core -g

And

npm install @babel/cli -gnpm install @babel/core -g

If you are using Jest run

npm install babel-core@7.0.0-bridge.0 --save-dev

Uninstall and reinstall @babel/node solves the problem if you do node development.


Looks like you need to install babel-core as the docs suggest:https://jestjs.io/docs/en/getting-started#using-babel

yarn add --dev babel-jest babel-core@^7.0.0-bridge.0 @babel/core regenerator-runtime


Sometimes its because you have installed both babel-cli and babel/cli, or babel-core and @babel/coreIt causes conflicts

So

1) delete node_modules

2) remove babel-cli, babel-core from your package.json, keep @babel/core, @babel/cli

3) npm install

babel-cli conflicts with @babel/cli

bable-core conflicts with @babel/core