MSYS2: Difference between revisions
No edit summary |
|||
Line 6: | Line 6: | ||
* Install common developer tools | * Install common developer tools | ||
** <code>pacman -S --needed base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake git</code> | ** <code>pacman -S --needed base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake git</code> | ||
==Package Management== | ==Package Management== |
Revision as of 19:37, 15 April 2020
Bash for windows
Getting Started
- Install Msys2 from https://www.msys2.org/
- Note: You can also install with
choco install msys2
but you will need to set start menu shortcuts yourself
- Note: You can also install with
- Install common developer tools
pacman -S --needed base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake git
Package Management
# Install a package pacman -S <package> # Uninstall a package pacman -R <package>