|
|
|
Ask HN: Why is installing things still so cumbersome?
|
|
2 points
by zweicoder
3254 days ago
|
|
On Ubuntu every time I want to install something I have to:
1) Google the installation instructions for whatever I'm trying to install
2) Collate all the steps I'm supposed to run
3) Copy all those instructions lines by line into the terminal, which most of the time boils down to adding a ppa / key, running curl to get some other script / binary etc This quickly gets repetitive especially when setting up several computers. I apologize in advance if it's a silly question, but what's stopping our system package managers from cutting out all these steps? Why can't we apt-get / brew install everything yet? Or why doesn't websites just give a `install.sh` file with all the relevant instructions in it? Relevant side note: I'm collating a bunch of these install scripts over at https://github.com/zweicoder/asd and https://github.com/zweicoder/asd-modules - very simple and preliminary but would love more feedback and input on this issue before I spend more time on it |
|
It was then that I sort of got the BSD idea of just installing everything as source code. The time spent compiling might be roughly equivalent to the time spent trying to find information and go through the steps for installing a binary...and I hate to think about how many times has 'apt install' has installed a really old version of some tool.
Anyway, I have a bash script that installs my significant tools. But it's my script for my tools and I don't expect someone else's would be as good nor would mine be as good as someone else's.
Good luck.