diff options
| author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2021-04-15 12:04:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-15 12:04:34 +0200 |
| commit | 890792004063f3754be3a1ed0e36c6787f0c9351 (patch) | |
| tree | 4cf1bdd17aff16f86cd9474c0fcc4bd78279e41b /docs/macos-requirements.md | |
| parent | d13a60f1aac8c132e781e6de8a620f251e0ac889 (diff) | |
| download | wiki-890792004063f3754be3a1ed0e36c6787f0c9351.tar.gz wiki-890792004063f3754be3a1ed0e36c6787f0c9351.tar.bz2 wiki-890792004063f3754be3a1ed0e36c6787f0c9351.zip | |
refactor(guide): Refactor installation guide (#427)
* Update Spell_system.md
* refactor(guide): Refactor installation guide
* Update Requirements.md
* Update Requirements.md
* da
* Update windows-requirements.md
* d
* test
* test
* windows
* windows
* help
* note to self: next windows
* core and server installation
* db
* finally
* Update client-setup.md
* Update final-server-steps.md
* Update windows-core-installation.md
* Update core-installation.md
* last
* Update database-installation.md
* Update database-installation.md
* Update server-setup.md
* Rename Requirements.md to requirements.md
* Y
* f
* ad
* Update windows-core-installation.md
* d
* Update installation-guide.md
* Update linux-requirements.md
Ubuntu installation with seperate MariaDB and Oracle MySQL
* Remove account
* Update installation-guide.md
* Update installation-guide.md
* Update installation-guide.md
Co-authored-by: Nolt <nolt@users.noreply.github.com>
Co-authored-by: Francesco Borzì <borzifrancesco@gmail.com>
Diffstat (limited to 'docs/macos-requirements.md')
| -rw-r--r-- | docs/macos-requirements.md | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/docs/macos-requirements.md b/docs/macos-requirements.md new file mode 100644 index 0000000..2a10d11 --- /dev/null +++ b/docs/macos-requirements.md @@ -0,0 +1,64 @@ +# macOS Requirements + +| Installation Guide | | +| :- | :- | +| This article is a part of the Installation Guide. You can read it alone or click on the previous link to easily move between the steps. | +| [<< Start: Installation Guide](installation-guide.md) | [Step 2: Core Installation >>](core-intallation.md) | + +| | +| :- | +| MySQL ≥ 5.7.0 | +| CMake ≥ 3.16 | + + +- Install XCode using the App Store, then open the terminal and type: + +```sh +xcode-select --install +``` + +- Install the package manager [Homebrew](http://brew.sh/) + +Use brew it to install the required packages: + +```sh +brew update +``` + +```sh +brew install openssl readline cmake ace coreutils bash bash-completion coreutils +``` + +This will install bash 5+, you might need to restart your terminal. +Make sure you are using bash 5 or newer by typing `bash --version`. + +Now install mysql: + +```sh +brew install mysql +``` + +You will be prompted some instructions to complete the `mysql` installation, for example to properly set a password. Just follow the instructions and properly configure mysql. **This step is important, do not skip it.** + +To verify that mysql has been properly installed, try accessing it using either the command line (e.g. `mysql -u root -p`) or using DB client managers with a UI like Sequel Ace. + +You can install Sequel Ace with: + +```sh +brew cask install sequel-ace +``` + +<br> + +## Help + +If you are still having problems, check: + +* [How to ask for help](How-to-ask-for-help.md) + +* [Join our Discord Server](https://discord.gg/gkt4y2x), but it is not a 24/7 support channel. A staff member will answer you whenever they have time. + +| Installation Guide | | +| :- | :- | +| This article is a part of the Installation Guide. You can read it alone or click on the previous link to easily move between the steps. | +| [<< Start: Installation Guide](installation-guide.md) | [Step 2: Core Installation >>](core-intallation.md) | |
