Preparing a macOS machine for the Labs
This document provides the steps for installing the software required to begin the exercises on a Mac computer. The sequence is as follows:
- Install curl
- Install the IBM Cloud Developer Tools
- Install Java 1.8
- Create JAVA_HOME environment variable
- Install Gradle
- Install node.js
Step 1: Install curl
- In your browser, go to
http://macappstore.org/curl/
. Follow the installation instructions on the web site. - Verify curl is installed by typing the following into a terminal window:
curl http://www.google.com
- Verify that the response is the HTML for the Google page.
NOTE: If the response is The document has moved, then curl was successfully installed, but the url is not correct. According to your geography, you need to change the extension. - If you do not have curl installed, you can get it from the Mac App Store (http://macappstore.org/curl), or you can find various version binaries and source code at https://curl.haxx.se/download.html.
Step 2: Install the IBM Cloud Developer Tools
- Follow the instructions at Getting started with the IBM Cloud CLI to install the IBM Cloud Developer Tools.
Step 3: Install Java JDK 1.8
- In a browser, open https://www.oracle.com
- In the list of menu options, click Downloads and Trials.
- Click Java for Developers.
- In the list, look for the newest version that starts with Java SE 8. At the time of writing, the newest version was Java SE 8u171. In that section, click the DOWNLOAD button under JDK (Note: your minor version may be different)
- In the section that lists installation files for the various operating systems, click the Accept License Agreement radio button at the top.
- Select the Mac OS X x64 file (jdk-8u171-macosx-x64.dmg or newer).
- Double-click the downloaded file to open it.
- Double-click the package to unpack it. Follow the default installation instructions.
- Verify that the installation was successful by typing
java
in a terminal window. You should see a list of usage options.
Step 4: Create JAVA_HOME environment variable
- Open bash_profile in an editor:
$ vi ~/.bash_profile
- Add the following line to the bottom of the file:
export JAVA_HOME=$(/usr/libexec/java_home)
- Save and close the file.
- In the terminal window, type
$ source ~/.bash_profile
- Verify that it is set correctly by typing
$ echo $JAVA_HOME
You should see the full path to the jdk. - Verify that your installation of Java is recognized. Type:
java –version
You should see information about the java version, the runtime environment, and Java HotSpot.
Step 5: Install Gradle
- Type ` brew install gradle`
Step 6: Install node.js
- Type
brew install node
- Verify the installation:
node -v
The response is the version number (for example, v4.2.6). - Type
npm -v
Again, the response is the version number.