Skip to content

Instantly share code, notes, and snippets.

@rakibulinux
Created June 25, 2020 11:26
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 rakibulinux/5eb1500337a4fe980c9008f8a12438b0 to your computer and use it in GitHub Desktop.
Save rakibulinux/5eb1500337a4fe980c9008f8a12438b0 to your computer and use it in GitHub Desktop.
How To Install EtherCalc on Ubuntu 18.04
#!/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