Skip to content
alvinl edited this page Sep 4, 2014 · 1 revision

This is a detailed guide on installing Stem on Mac OS X. If any problems arise while installing feel free to add me on Steam for help.

1) Node.js

Stem requires Node.js v0.10.x and above. If you already have Node.js installed you can skip this section.

  1. If you are running a Mac you can go ahead and download the installer from Node.js's website. Just click on install to download the installer.
  2. Run the installer and you'll have Node.js installed. You can test your installation by running node -v in the Terminal to see your current version of Node

2) Xcode

Stem has a package that requires the Command Line Tools package that comes bundled with Xcode.

  1. Open up the App Store app and search for Xcode.
  2. Install Xcode (it's free), the download may take some time.
  3. Open Xcode and go into its preferences.
  4. Click on the "Downloads" tab and install "Command Line Tools".

3) Stem

Now that we have everything setup we can go ahead and download the bot.

  1. Open up Terminal
  2. Run git clone https://github.com/alvinl/stem
  3. Run cd stem to go into the bot directory.
  4. Run npm install to install the packages the bot needs.
  5. Rename the config.example.json file to config.json and edit it to your needs
  • Configuration guide here
  1. Run node bin/stem <path/to/config.json> to start the bot
  • Example: node bin/stem config.json
Clone this wiki locally