stevenliuyi / covid19

an interactive, animated COVID-19 coronavirus map to track the outbreak over time by country and by region for selected countries
MIT License
325 stars 97 forks source link

Deploy this in macOS #22

Open esteblock opened 4 years ago

esteblock commented 4 years ago

Hello! Thank you very much for this tool. I have been trying to deploy this webapp in my macOS, and I have got a lot of issues. Hopefully, with a help of a friend, some coffe and a good amount of hours I ended up with these instructions:

brew update
brew install coreutils
brew upgrade coreutils

Be sure that the "tac" command works well. Type "tac README.md" and you should read all the lines in inverse order. If you have installed coreutils but the "tac" command is not working, the command it is probably associated with "gtac", so try "gtac README.md". If this works, do: ln -s /usr/local/bin/gtac /usr/local/bin/tac

stevenliuyi commented 4 years ago

Thank you for sharing!