upleveled / system-setup

Set up a PERN development environment on Windows, macOS and Linux
28 stars 19 forks source link

Setup for Linux: Curl should be installed before first command #55

Closed CornaSn closed 5 months ago

CornaSn commented 5 months ago

In Ubunutu curl is not installed. Must be installed before you can use first command.

https://github.com/upleveled/system-setup/blob/main/linux.md

karlhorky commented 5 months ago

Thanks for the report!

@ProchaLu @Eprince-hub looks like we'll need a 1st PR to add a new command at the beginning of the Linux System setup guide sudo apt-get install -y curl

2nd PR: Although it seems like in modern resources, apt-get has changed to apt eg. sudo apt install -y curl

So let's do a 2nd PR to fix all usages of apt-get to use apt instead.