Created
June 25, 2020 11:26
-
-
Save rakibulinux/5eb1500337a4fe980c9008f8a12438b0 to your computer and use it in GitHub Desktop.
How To Install EtherCalc on Ubuntu 18.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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