- In order to install and configure your Mac, you need to be an Administrator on your computer. Either, contact Paul or Charlie, and they will create an account for you.
- Homebrew is an easy to use package manager for OS X. We will be using it to install most of the software we need.
-
First, to check if Homebrew is already installed, type the following into the Terminal:
brew --version
-
If
brew
is installed, skip to step 6; otherwise continue following the install instructions. -
If it is not installed, launch Xcode and if prompted, agree to the Terms and Conditions. Then, open the Terminal and install the Command Line tools with this command:
xcode-select --install
-
You can go to the Homebrew site for more information, but to install Homebrew, run this command:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
-
Once it has finished, ensure
brew
installed correctly by typing:brew --version
-
Run the following command to ensure everything is configured properly:
brew doctor
-
Run the following command to ensure
brew
is up to date:brew update
-
Node.js is a JavaScript platform for easily building fast, scalable network applications.
-
npm is a package manager for JavaScript, and is the default for Node.js.
-
First, check if Node.js & npm are already installed by running the commands:
node --version npm --version
-
If already installed, move onto the next section; otherwise, continue.
-
We will be using Homebrew to install Node.js and npm. With Homebrew, installing both is done with single package called
node
. Run the following commands in Terminal:brew update brew install node brew doctor
-
To make sure sure Node.js and npm installed correctly, run the commands:
node --version npm --version
- Anaconda is a distribution of Python that handles package management.
conda
is its package management system. It comes with multiple Python packages already included such asSQLAlchemy
,pandas
, andNumPy
.
-
First, check if Anaconda is already installed by running the command:
conda --version
-
If installed, move onto the next section; otherwise continue.
-
Download Anaconda. Choose the Anaconda Graphical Installer for Python 2.7 for Mac OS X.
-
Open the installer and follow the directions.
-
To make sure Anaconda properly installed, open a Terminal window and run:
conda --version
- Git is a version control system that we will be using to organize our projects clearly and efficiently.
-
First, check if git is already installed by running the command:
git --version
-
If already installed, move onto the next section; otherwise, continue.
-
We will be using Homebrew to install git. Run the following commands in Terminal:
brew update brew install git brew doctor
-
To make sure git installed properly, run the command:
git --version
- SQLite is serverless, zero-configuration, transactional SQL database that allows for quick sharing and testing as each database is simply a created file.
sqlite3
is its command line tool.
-
First, check if SQLite is already install by running the command:
sqlite3 -version
-
If already installed, move onto the next section; otherwise, continue.
-
We will be using Homebrew to install SQLite. Run the following commands in Terminal:
brew update brew install sqlite brew doctor
-
To make sure SQLite install properly, run the command:
sqlite3 -version
- Sequel Pro is an easy-to-use Mac database management application for working with MySQL databases allowing for direct access to MySQL databases on local and remote servers.
-
First, go to Applications, and see if Sequel Pro is already installed.
-
If already installed, move onto the next section; otherwise, continue.
-
Download Sequel Pro and install.
-
When finished installing, be sure to unmount the DMG file from your computer.
- PyCharm is an IDE used for programming in Python. It provides code analysis, a graphical debugger, an integrated unit tester, and integration with version control systems (Git)
Note: PyCharm is merely a suggestion.
-
As a student, you qualify for a free license for PyCharm through JetBrains. Go to JetBrains and click on apply.
-
Once you have applied and created an account through JetBrains, download the professional version of PyCharm.
-
PyCharm requires Java which can be downloaded here. You can also install using Homebrew.
-
When PyCharm asks for a license, provide your account login information for your JetBrains account. Your license must be renewed yearly.
You may want to download/try out other text editors or IDEs that fit your working style.
-
Spyder comes packaged with Anaconda. It is a Python IDE. To run it from the Terminal:
/Users/<username>/anaconda/bin/spyder ; exit;
-
Komodo Edit is a fairly simple text-editor.
-
You can try out PhpStorm and WebStorm also through JetBrains.
This a step by step guide on setting up the local web development environment on your Mac. The steps I include are taken from this tutorial. However, the tutorial includes extra details that are not needed, so I provide only the necessary steps below as well as how to set up your first WordPress site.
Apache is a web server, and we will be using it to do web development locally. Apache 2.4 is pre-installed on OS-X Yosemite.
-
To start up the web server, open Terminal and run:
sudo apachectl start
-
To stop the web server, open Terminal and run:
sudo apachectl stop
-
To restart the web server after having made configuration changes, open Terminal and run:
sudo apachectl restart
-
To make sure Apache is working, start Apache , and then try to reach your server in a browser by pointing it at your localhost, you should see a simple header that says It works!.
-
Note: If you cannot reach your site via
http://localhost
you might need to add an alias in your/etc/hosts
file:127.0.0.1 localhost
. It should exist by default.
We are going to change the document root for Apache, so it points to a folder in our home directory.
-
To do so, we need to edit Apache's configuration file. You can use whatever command line editor you are comfortable with, just realize this is a
root-owned
folder so you will need to usesudo
to be able to edit and save the file. I prefer to usevim
:sudo vim /etc/apache2/httpd.conf
-
Search for the term
DocumentRoot
, and you should see the line:DocumentRoot "/Library/WebServer/Documents"
-
Change that line to the directory you want to point to on your account where
<username>
is your username:DocumentRoot "/Users/<username>/Sites"
-
You also need to change the
<Directory>
tag reference right below the DocumentRoot line. This should also be changed to point to your new document root also:<Directory "/Users/<username>/Sites">
-
In that same
<Directory>
block you will find anAllowOverride
setting, this should be changed as follows:AllowOverride All
-
Now we have the Apache configuration pointing to a
Sites
folder in our home directory. One problem still exists, however. By default, Apache runs as the user_www
and group_www
. This will cause permission problems when trying to access files in our home directory. About a third of the way down thehttpd.conf
file there are two settings to set theUser
andGroup
Apache will run under. Change these to match your user account (replace<username>
with your real username), with a group ofstaff
:User your_user Group staff
-
Now, save and close the file.
-
Restart your Apache with
sudo apachectl restart
to pick up the changes you made to the configuration file. -
Now, you need to create a
Sites
folder in the root of your home directory. You can do this in Terminal, or in Finder. In this newSites
folder create a simpleindex.html
and put some dummy content in it like:<h1>My User Web Root</h1>
.mkdir ~/Sites echo "<h1>My User Web Root</h1>" > ~/Sites/index.html
-
Pointing your browser to
http://localhost
should display your new message. If you have that working, Apache has been correctly configured!
- We will be installing PHP 5.4 through Homebrew. PHP is used for web development, and the backend of WordPress is written in it.
-
First, make sure Homebrew is up to date.
brew update brew doctor
-
Next, we have to
tap
into the PHP formulas from Homebrew.brew tap homebrew/dupes brew tap homebrew/versions brew tap homebrew/homebrew-php
-
Once that is complete, install PHP 5.4.
brew install php54 brew doctor
-
You have successfully installed PHP 5.4 but we need to tell Apache to use it. You will again need to edit the
/etc/apache2/httpd.conf
file and search for#LoadModule php5_module
. You will notice that this is line is commented out. We can ignore it because this is pointing to the version of PHP that came with OS X. Below the other LoadModule lines, add this:# Brew PHP LoadModule LoadModule php5_module /usr/local/opt/php54/libexec/apache2/libphp5.so
-
You should also take this time to uncomment the
mod_rewrite.so
module definition so that it will be available:LoadModule rewrite_module libexec/apache2/mod_rewrite.so
-
Restart Apache again, now that PHP has been installed.
sudo apchectl restart
-
We need to make sure PHP is installed and running as expected. Simply create a file called
info.php
in yourSites
folder you created earlier. In that file, just enter the line:<?php phpinfo(); ?>
-
Point your browser to
http://localhost/info.php
and you should see a PHP information page:
-
If you see a similar phpinfo result, Apache and PHP are running successfully.
-
IMPORTANT NOTE: Be sure to delete
info.php
once you are sure PHP is running properly.phpinfo();
can be a potential security vulnerability, so it is important to remove it when you no longer need it.
- While SQLite is useful for quick database creation and sharing, MySQL is scalable, secure and necessary for WordPress. You can work with MySQL through Sequel Pro or the command line tool
mysql
.
-
We will be using MariaDB which is a drop-in replacement for MySQL and is easily installed and updated with Homebrew. Open Terminal, and run the following commands:
brew update brew install mariadb brew doctor unset TMPDIR mysql_install_db
-
After a successful installation, you can start the server:
mysql.server start
-
If you are successful, you will see the following:
Starting MySQL .. SUCCESS!
-
Change the MySQL server password and secure your installation. The simplest way to do this is to use the provided script:
/usr/local/bin/mysql_secure_installation
-
Just answer the questions and fill them in as is appropriate for your environment.
-
To stop the MySQL server, use the command:
mysql.server stop
- Now, we are going to walk through setting up a WordPress site in for local development.
-
First, make sure the Apache and MySQL servers are running.
-
Next, go to WordPress.org and download the lasted version of WordPress.
-
Place the downloaded zip file in your
Sites
directory. Note: I recommend you create a subdirectory for your WordPress sites within yourSites
directory. For the remainder of this tutorial, I assume your WordPress site is under the directoryWordPress_Sites
. -
Unzip the file, and rename the result folder to whatever you would like such as
MyWordPressSite
. -
Now, we need to created the MySQL database for the site. Open Terminal and access the MySQL server:
mysql -u root -p
-
You will be prompted for the password for
root
, which you should have set earlier. If not, by defaultroot
has no password. -
Inside the MySQL monitor, create a database for your site with whatever name you would like. Be sure to end your command with a semi-colon
;
. Example:CREATE DATABASE first_wordpress_site;
-
Close the MySQL monitor, and navigate to your WordPress site from a web browser. Example link:
http://localhost/WordPress_Sites/MyWordPressSite/
-
Follow the instructions on the screen. Provide the name of the database you just created. The database username and password are your login credentials for the MySQL server. The database host is
127.0.0.1
orlocalhost
. For table prefix, name this something other thanwp_
for security purposes. Be sure to include an underscore after the prefix. -
If everything was entered properly, upon clicking
Submit
, you should move onto the next page. -
Finish following the instructions, and when you are done creating an account and logging in, you will have your WordPress site!
-
Note: If you wish to delete your WordPress site, remove the corresponding WordPress folder from your
Sites
directory. Then go into the MySQL monitor on the command line and execute the command:DROP DATABASE <database_name>;
-
Use
conda
whenever possible to install new Python packages. Useconda search
to find packages. -
If
conda
does not have a package, usepip
instead. Usepip search
to find packages, andpip install
to install them.pip
is another broader Python package management system.