Add dependency of Ubuntu in README
blueskyson opened this issue · 4 comments
blueskyson commented
Installing these dependencies prior to make build
in Ubuntu.
sudo apt install libcurl4-openssl-dev libzip-dev
marchersimon commented
Thanks! Any reason you chose the dev
variant of those packages? Are those the defaults for ubuntu? Also, are these packages already preinstalled? (In that case I'll just add a note to make sure they're there)
blueskyson commented
- Only *-dev packages contain required headers like
zip.h
andcurl/curl.h
. Zip
andcurl
binaries might be default, but their libraries are not default.- At least the 2 packages are not default in my Ubuntu 20.04 (August 2020 release version).
There is no need to worry about whether they are default. If the machine already contains those libraries, apt
will cancel installation or ask user to update to prevent conflicts.
marchersimon commented
Ah, I thought dev
means it is in development rather it is used for development. Makes more sense now. I'll add it 👍🏽
marchersimon commented
Done in 0bab3ba