Skip to content

Instantly share code, notes, and snippets.

@tatmush
Created November 7, 2019 05:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tatmush/9bb1ba56ad9f63719c51cd61ff681fc9 to your computer and use it in GitHub Desktop.
Save tatmush/9bb1ba56ad9f63719c51cd61ff681fc9 to your computer and use it in GitHub Desktop.
I found it difficult to install node and remix ide to begin solidity developement. Here is a gist of the steps i took to make it happen
# Installing remix-ide on Ubuntu 18.04
### How To Install Node.js on Ubuntu 18.04
https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-18-04
1. cd ~
2. curl -sL https://deb.nodesource.com/setup_10.x -o nodesource_setup.sh
3. nano nodesource_setup.sh
4. sudo bash nodesource_setup.sh
5. sudo apt install nodejs
6. sudo apt install build-essential
### Install Remix IDE
7. sudo npm install -g remix-ide --unsafe-p
### Start the IDE
8. remix-ide
9. Go to your browser 127.0.0.1:8080 or http://localhost:8080/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment