Please let me know if there’s any remaining issues!
]]>I was running into the same problem, and it ended up being because I didn’t install ethercalc properly. I did this originally:
npm install ethercalc
This caused me to run into the exact same problem you were running into. To fix it, I deleted the ethercalc folder that got installed in ~/node_modules, then ran this command:
npm i -g ethercalc
This installs ethercalc correctly at the system level. Then you can simply type ethercalc to run the server and it should work fine. Mine came up with a warning about not having redis installed, so I did this:
yum search redis
and I located the package. Haven’t installed it yet but I’ll let you know what happens. I know redis is required in order to have multiple people work on the same spreadsheet. Let me know if you run into issues!
]]>