Skip to content

Instantly share code, notes, and snippets.

@linuxbiekaisar
Created July 2, 2020 13:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxbiekaisar/7abe02db3b7000cd41e8174a884f3ece to your computer and use it in GitHub Desktop.
Save linuxbiekaisar/7abe02db3b7000cd41e8174a884f3ece to your computer and use it in GitHub Desktop.
EtherCalc Install In Ubuntu
#!/bin/sh
curl -sL https://deb.nodesource.com/setup_10.x -o nodesource_setup.sh
sudo apt install nodejs -y
sudo apt-get install gzip git curl python libssl-dev pkg-config build-essential
#Install EtherCalc
sudo npm install -g ethercalc
ethercalc
#Visit:
http://localhost:8000/
#Install Redis
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:rwky/redis
sudo apt-get update
sudo apt-get install redis-server
redis-cli ping
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment