This is a collection of automated installer scripts for "real programmers." These scripts will
install various base packages most programmers need, and then specific packages you'll need to work
in the language you choose. The scripts are based on [Chris Titus' Winutil](https://github.com/ChrisTitusTech/winutil) but redesigned to allow you to run the script as a normal user and becoming admin as needed. If you want more software then check out Chris' very nice script.
* [conan](https://conan.io) -- A very useful C++ package system that helps get access to C++ libraries.
* [meson](https://mesonbuild.com/) -- So far the best cross platform build tool I've found, but it does have it's own problems.
I also recommend you install [vcpkg](https://github.com/microsoft/vcpkg) to get access to even more C++ packages. Meson and CMake should use vcpkg installed packages.
The `winlibs` command is just to make sure it gets installed for people who don't use the `base.ps1`
script or if that script changes and doesn't install it as a base component. That means it may do
nothing since you already have `winlibs`.
### Either `nodejs.ps1` or `bunjs.ps1` for JavaScript
The `nodejs.ps1` script installs:
* [NodeJS LTS](https://nodejs.org/en) -- I default to the LTS version but you can change it to the
latest if you want.
To install this manually do:
```shell
winget install OpenJS.NodeJS.LTS
```
You can also install the latest version by using `OpenJS.NodeJS` instead of `OpenJS.NodeJS.LTS`.
The `bunjs.ps1` script installs:
* [Bun.js](https://bun.sh/) -- Keep in mind that I do not use this and I'm only including it to be
complete. If you have suggestions to improve this installer then let me know.
```shell
winget install Oven-sh.Bun
```
### `python.ps1` for Python
* [Anaconda](https://www.anaconda.com/) -- This is mostly because I use it in my course, so feel free to edit the script and not install this.
* [Python 3](https://apps.microsoft.com/detail/9ncvdn91xzqp?hl=en-mt&gl=MT) -- Yes, the one from the Microsoft store because it's the only Python installer that seems to be "allowed" to place itself in the PATH despite every other installer saying this is basically illegal.
To install yourseful run:
```shell
winget install Anaconda.Anaconda3
winget install Python.Python.3.12
```
### `ruby.ps1` for Ruby
* [ruby](https://www.ruby-lang.org/en/) -- I'm actually not very up on Ruby these days so advice on
the script welcome.
To install this yourself do:
```shell
winget install RubyInstallerTeam.Ruby.3.2
```
There is an alternative package that installs a "dev kit" but I'm not sure how this will interact
with the `winlibs` package and other things installed so far. If you have any information on which
If you have a language that needs this kind of installer then feel free to grab one of these and
modify it. If you can test that works and want me to include it then do a patch or pull request
with your new script and I'll take a look. Due to the unsafe nature of these scripts I'll only be
accepting PRs from people with an identifiable presence online, an actual face picture, and full
real name. Basically, if I can't get you arrested for trying to hack people then I won't accept
your script.
Be sure to test your scripts under the following conditions:
1. Windows Home 10 -- Remember, the point is to make it easy for anyone to get your language, so Windows Pro is a non-starter.
2. As a __non-admin__ user. This is important, as if your script only runs as administrator then it's dead on arrival.
3. Users will have a second account that is admin which they can enter a password for, and the scripts currently automatically switch to administrator as needed.