React-native-debugger: How to install .zip in Linux

Created on 4 Aug 2017  路  9Comments  路  Source: jhen0409/react-native-debugger

I downloaded the zip file, but i dont know how to install or run it, any help?

Operating System: Linux (Linux Mint)

Most helpful comment

to install on Ubuntu you will need to:

1) download the latest rn-debugger-linux-x64.zip from
2) unzip it and move the folder to /opt

cd ~/Downloads
sudo unzip rn-debugger-linux-x64.zip -d /opt/ReactNativeDebugger

3) preferably rename the executable

cd /opt/ReactNativeDebugger 
sudo mv 'React Native Debugger' rndebugger

4) Add the folder which includes the React Native Debugger renamed executable to your path

vim ~/.bash_profile
export PATH="$PATH:/opt/ReactNativeDebugger"

5) Download the icon from the repository and place it in your /opt/ReactNativeDebugger folder

sudo mv ~/Downloads/logo.png /opt/ReactNativeDebugger/logo.png

5) Create a desktop entry, so that you can pin react native debugger to your dock

vim ~/.local/share/applications/rndebugger.desktop

Include and edit the entry and save the file.
It is important that you replace Exec and Icon with the absolute path to the executable and logo files

[Desktop Entry]
Version=0.9.7
Type=Application
Name=ReactNativeDebugger
Exec=/opt/ReactNativeDebugger/rndebugger
Icon=/opt/ReactNativeDebugger/logo.png
Categories=Development;IDE;
Terminal=false
StartupNotify=true
StartupWMClass=rndebugger

All 9 comments

I didn't realize that there was a executable file, sorry....thank you for this tool !!!

Wasnt clear to me either. For anyone else wondering, its the React Native Debugger executable file

HOW RUN THE EXECUTABLE FILE IN UBUNTU?

It doesnt run for me as well on Ubuntu

Solved - you need libgconf-2-4

apt-get install libgconf-2-4

https://github.com/electron/electron/issues/1518

to install on Ubuntu you will need to:

1) download the latest rn-debugger-linux-x64.zip from
2) unzip it and move the folder to /opt

cd ~/Downloads
sudo unzip rn-debugger-linux-x64.zip -d /opt/ReactNativeDebugger

3) preferably rename the executable

cd /opt/ReactNativeDebugger 
sudo mv 'React Native Debugger' rndebugger

4) Add the folder which includes the React Native Debugger renamed executable to your path

vim ~/.bash_profile
export PATH="$PATH:/opt/ReactNativeDebugger"

5) Download the icon from the repository and place it in your /opt/ReactNativeDebugger folder

sudo mv ~/Downloads/logo.png /opt/ReactNativeDebugger/logo.png

5) Create a desktop entry, so that you can pin react native debugger to your dock

vim ~/.local/share/applications/rndebugger.desktop

Include and edit the entry and save the file.
It is important that you replace Exec and Icon with the absolute path to the executable and logo files

[Desktop Entry]
Version=0.9.7
Type=Application
Name=ReactNativeDebugger
Exec=/opt/ReactNativeDebugger/rndebugger
Icon=/opt/ReactNativeDebugger/logo.png
Categories=Development;IDE;
Terminal=false
StartupNotify=true
StartupWMClass=rndebugger

@fabriziobertoglio1987 Thanks !! I guess the Desktop Entry should have Exec as /opt/ReactNativeDebugger/rndebugger

@amanboss9 yes, you are right. Thanks !

if the above doesn't work try

Exec=/opt/ReactNativeDebugger/react-native-debugger
Was this page helpful?
0 / 5 - 0 ratings

Related issues

Clete2 picture Clete2  路  5Comments

MailosT picture MailosT  路  4Comments

usrbowe picture usrbowe  路  6Comments

JodiWarren picture JodiWarren  路  3Comments

arrygoo picture arrygoo  路  5Comments