简体   繁体   English

反应本机初始化错误

[英]React-native init error

I'm trying to install React-native to my ubuntu 14.04. 我正在尝试将React-native安装到我的ubuntu 14.04。 I have sucessfully installed react-native-cli , but when I'm trying to run react-native init reactApp trene is an error: 我已经成功安装了react-native-cli ,但是当我尝试运行react-native init reactApp trene时出现错误:

pavlov@pavlov-System-Product-Name:~$ node -v
v0.12.7
pavlov@pavlov-System-Product-Name:~$ react-native init reactApp
prompt: Directory reactApp already exist. Continue?:  (no) y
This will walk you through creating a new React Native project in /home/pavlov/reactApp
Installing react-native package from npm...
You are currently running Node v0.12.7 but React Native requires >=4. Please use a supported version of Node.
See https://facebook.github.io/react-native/docs/getting-started.html
/home/pavlov/reactApp/node_modules/react-native/local-cli/cli.js:56
  const setupEnvScript = /^win/.test(process.platform)
  ^^^^^
SyntaxError: Use of const in strict mode.
    at exports.runInThisContext (vm.js:73:16)
    at Module._compile (module.js:443:25)
    at Module._extensions..js (module.js:478:10)
    at Object.require.extensions.(anonymous function) [as .js] (/home/pavlov/reactApp/node_modules/babel-core/lib/api/register/node.js:214:7)
    at Module.load (module.js:355:32)
    at Function.Module._load (module.js:310:12)
    at Module.require (module.js:365:17)
    at require (module.js:384:17)
    at Object.<anonymous> (/home/pavlov/reactApp/node_modules/react-native/cli.js:15:18)
    at Module._compile (module.js:460:26)

How can i fix it? 我该如何解决?

You definitely need to install Node 4.0 or higher. 您肯定需要安装Node 4.0或更高版本。 Actually it even says it in your console output. 实际上,它甚至可以在控制台输出中说出来。

Here is how i installed Node on my Ubuntu: 这是我在Ubuntu上安装Node的方式:

sudo apt-get install curl
curl --silent --location https://deb.nodesource.com/setup_4.x | sudo bash -
sudo apt-get install nodejs

Good luck! 祝好运!

转到https://nodejs.org/en/并下载最新版本,在本例中为v4.4.3。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM