summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFrancesco Borzì <borzifrancesco@gmail.com>2020-07-19 16:36:19 +0200
committerGitHub <noreply@github.com>2020-07-19 16:36:19 +0200
commitd7c913cfd5c7f25578b0ed7e1e478025b4cf304f (patch)
tree95e6f292b2f8d3772958675ab7483d92b99d61e7 /docs
parent417ed93b4083a36448d12085a1bc107bdfe710e0 (diff)
downloadwiki-d7c913cfd5c7f25578b0ed7e1e478025b4cf304f.tar.gz
wiki-d7c913cfd5c7f25578b0ed7e1e478025b4cf304f.tar.bz2
wiki-d7c913cfd5c7f25578b0ed7e1e478025b4cf304f.zip
Update Requirements.md (#266)
* Update Requirements.md * Update Requirements.md * Update Requirements.md
Diffstat (limited to 'docs')
-rw-r--r--docs/Requirements.md23
1 files changed, 16 insertions, 7 deletions
diff --git a/docs/Requirements.md b/docs/Requirements.md
index d23f001..b790681 100644
--- a/docs/Requirements.md
+++ b/docs/Requirements.md
@@ -85,21 +85,30 @@ After `sudo apt-get update` you can install gcc-7: `sudo apt-get install g++-7 g
## Mac OS X
-Install XCode using the App Store, then open the terminal and type:
+- Install XCode using the App Store, then open the terminal and type:
`xcode-select --install`
-For those who don't have [Homebrew](http://brew.sh/) installed, you can easily install it typing:
+- Install the package manager [Homebrew](http://brew.sh/)
-`ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"`
-
-Then use it to install the required packages:
+Use brew it to install the required packages:
`brew update`
-`brew install openssl readline cmake ace coreutils bash bash-completion md5sha1sum mysql56`
+`brew install openssl readline cmake ace coreutils bash bash-completion coreutils`
+
+Now install mysql:
+
+`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 Pro.
+
+You can install Sequel Pro with:
+
+`brew cask install sequel-pro`
-`brew link mysql56 --force`
## Windows