Home » React Native Environment Setup

React Native Environment Setup

by Online Tutorials Library

React Native Environment Setups

There is a different alternative for React Native environment setup (installation), depends upon the operating system you use.

The instructions are quite different for each development and target operating system.

In this tutorial, we will use Windows as a development operating system and Android as a target operating system.

Developing app using React Native framework requires Node, React Native command line interface, Python2, JDK, and Android Studio.

Here, we are using a favorite package manager Chocolatey for Windows. Using this, we can install a recent version of Python, and Java SE Development Kit (JDK).


Steps to Setup React Native Environment

1. Visit Chocolatey, and click “Install Chocolatey Now” it open another URL.

React Native Environment Setup

2. Install chocolatey setup, copy the code provided in Install with cmd.exe section.

React Native Environment Setup

3. Open your Command Prompt in Administrative mode (right-click Command Prompt and select “Run as Administrator”), paste this code and click enter. It will install Chocolatey.

React Native Environment Setup

4. In the Administrative mode of command prompt, paste the code and run it (install Node.js, Python, and JDK).

If you have already installed Node.js, make sure it has version above 8 and if you have already installed JDK, make it version 8 or newer version.

React Native Environment Setup

5. Node comes with npm (Node Package Manager), which lets you install the React Native. Run the given code:

React Native Environment Setup


Setup Android Studio

1. Visit Android website and download Android Studio.

React Native Environment Setup

2. Run the downloaded android studio set (.exe) file and follow the instruction.

React Native Environment Setup

3. Choose the feature you want to install.

React Native Environment Setup

4. Select the installation location.

React Native Environment Setup

5. Let the installation proceed and click Next.

React Native Environment Setup

6. Click Finish to complete the installation.

React Native Environment Setup

After successful installation, the Android Studio home screen will appear.

React Native Environment Setup


Setup Java JDK and Android SDK path

1. Visit How to set path in Java to set JDK path.

2. Set Android SDK path as My Computer > Properties > Advance system settings > Environment Variables > in System variables section. Click “New…” add Android home and Android SDK as bellow screen.

React Native Environment Setup

3. Install the required components, go to Tools Android > SDK Manager > SDK platforms and select the required components and install.

React Native Environment Setup

4. Let the installation proceed and after successfully installation, click Finish.

React Native Environment Setup

5. Create Android Emulator, a virtual Android Device, go to Tools > Android > AVD Manager > Create Virtual Device… SDK platforms and select the device type.

React Native Environment Setup

6. Select API level of Android Emulator.

React Native Environment Setup

7. Provide device name and set properties by clicking Show Advance Settings.

React Native Environment Setup

8. Launch the Emulator.

React Native Environment Setup


You may also like