Live data from Hacker News

Ask HN: How do you install developer tools on a fresh system?

news.ycombinator.com

21–30 of 129 posts

Re: Ask HN: How do you install developer tools on a fresh system?

#21

I'm very interested in a way to containerize (runing them within a vm) these tools that way nothing needs to be installed, and could go easily from machine to machine, without polluting the filesystem.

Honestly I think this is overkill. For a dev machine, I install all my tools locally that way "yum update" or equivalent keeps everything up to date easily.

Use VMs or containers for local simulation of your deployment targets.

Re: Ask HN: How do you install developer tools on a fresh system?

#23
post #8
post #6

https://chocolatey.org/

windows 10 comes with packet manager, so you can just execute the following statements on an fresh windows install (powershell): http://pastebin.com/HmiqDDbi

Interesting. This looks like NuGet on steroids.

Re: Ask HN: How do you install developer tools on a fresh system?

#25

Question: why are you doing a fresh install? If you install everything through your package manager, you don't need a fresh install to clean things up. My operating system has lived through several different machine upgrades. I just do a `cp -a` to copy the files from one hard drive to another, set up the bootloader and go.

Theoretically that may be the case, but its far from reality.
Post reply on HN