-
Notifications
You must be signed in to change notification settings - Fork 139
Development setup for Mac OS X
-
Install Xcode.
-
In the Terminal, type
xcode-select --install
. -
The output on Command Line will be:
xcode-select: note: install requested for command line developer tools
. -
A dialogue box should appear to confirm your installation. Click install.
-
To verify that you have installed Xcode Command Line Tools properly, type
xcode-select -p
. -
It should output:
/Applications/Xcode.app/Contents/Developer
(El Capitan) or/Library/Developer/CommandLineTools
(Yosemite). -
If you do not already have it, download the GitHub Desktop app and sign into it (you may need to create an account if you don't already have one).
-
Navigate to the patternfly-org page.
-
Click the green Clone or Download button on the right.
-
Click the Open in Desktop button at the bottom left of the Clone or Download dropdown.
-
Click the Clone button that appears in the GitHub Desktop app and make note of the location you save to.
-
Open Terminal and type
cd [path-to-wherever-you-saved-patternfly-org-in-the-previous-step]
-
Return to the patternfly-org page and follow the Development Setup instructions.
Notes:
- All the commands listed in the Development Setup instructions should be run from the existing Terminal window you previously opened.
- You do not need to install Ruby as it is already installed.
- Prefix all
npm
andgem
commands withsudo
(e.g.,sudo npm install -g bower
).