iMarket Digital Properties

0 %
iMarket Digital Properties Ltd
Design · Develop · Monetize · Support
  • Location:
    United Kingdom
  • City:
    London
  • Service Area:
    Global
Business Systems
Business Services
24/7 Support
Websites
Web Applications
E-commerce Solutions
Digital Platforms
Products & Services
Public & Private Networks

How To Install EtherCalc on Ubuntu 16.04

February 21, 2018
EtherCalc is a web spreadsheet. Your data is saved on the web, and people can edit the same document at the same time. Everybody’s changes are instantly reflected on all screens.Work together on inventories, survey forms, list management, brainstorming sessions and more!https://ethercalc.net/

1. First, Install Nodejs

2. Install dependencies

$ sudo apt-get install gzip git curl python libssl-dev pkg-config build-essential

3. Install EtherCalc

$ sudo npm install -g ethercalc
$ ethercalc
Navigate to http://localhost:8000 or http://your-IP:8000 to open ethercalc default pageNOTE: If using Vagrant, below is an example of how to set port forwarding in Vagrantfile:
config.vm.network "forwarded_port", guest: 8000, host: 8000

4. (Optional) Install Redis

Redis is an open source software which is used for advanced key-value cache and store. It is often referred to as a data structure server. If we running Redis server in our system, EtherCalc will prefer it over file-based storage to improve performance.
$ sudo apt-get install python-software-properties
$ sudo add-apt-repository ppa:rwky/redis
$ sudo apt-get update
$ sudo apt-get install redis-server
To check status:
$ redis-cli ping
Output:
PONG
If a Redis service is running on the same host, EtherCalc will prefer it over file-based storage to improve performance.

REFERENCES

https://www.2daygeek.com/ethercalc-installation-in-linux-mint-17-ubunt-14-04-debian-7-6/ https://ethercalc.net/
Posted in TutorialsTags:
2 Comments
  • Gaurang

    How can i put ethercalc in my website page? Actually i want to install ethercalc in my website inside specific page. so can you please suggest me how can i implement it?

    Thanks in advance!

    4:15 am November 16, 2019 Reply
    • I believe the only way you can have EtherCalc display on a specific page is thru an iframe – which does not seem ideal. Instead, you would just have to provide the link to EtherCalc within a website page that will start a new instance – just like what you see at the EtherCalc homepage here: https://ethercalc.net/

      9:26 am November 18, 2019 Reply
Write a comment