You have 2 main options: the binary files and the deb file.
If you go for the binary files:
- Download the file
rn-debugger-linux-x64.zip
- Unpack/extract the content of the file
- Navigate to where you extracted the package and execute it with
/.
(dot slash) as ./react-native-debugger
You can also add an alias for it in your .bashrc/.bash_profile
(or
.zshrc if you're using zsh), e.g.
alias rn-debug="~/react-native-debugger/react-native-debugger"
If you go for the deb file: Here you have 3 options:
- double click: Super simple but you may have the well known dependency error.
- gdebi: It is a lightweight GUI application with the sole purpose of installing deb packages. It identifies the dependencies and tries to install these along with the .deb files.
- dpkg/apt line command:
sudo apt install path_to_deb_file
For me gdebi is the best option among all. So with gdebi just download the deb file, open gdebi and indicate to it the path to your file. Piece of cake!
I hope this helps!