Skip to content
This repository was archived by the owner on Jun 3, 2021. It is now read-only.

Latest commit

 

History

History
51 lines (39 loc) · 1.82 KB

File metadata and controls

51 lines (39 loc) · 1.82 KB
<< architecture Installation Part II >>

Installation

Exosphere is not just a simple application, but a framework for large-scale software development of micro-service based applications. Developing applications consisting of many different code bases requires a package management system for installing/updating the various pieces of platforms and tools as needed. You don't want to get into the business of having to install several programming languages, frameworks, and other dependencies of your polyglot applications manually.

Dependencies

Before installing Exosphere, ensure you have the following applications installed:

General installation instructions

  • Download and install the binary executable for your platform from the GitHub release page
  • Move the binary to a location in your path and name it exo

Mac installation

  1. Download the Exosphere binary for your system from the release page referenced above (for most, this is the 64-bit Darwin build).
  2. Assuming our binary downloaded to ~/Downloads/exo-darwin-amd64, let's move the binary to a suitable location and make sure it's executable.
    • mv ~/Downloads/exo-darwin-amd64 /usr/local/bin/exo
    • chmod +x /usr/local/bin/exo

Note: Depending on the privileges of /usr/local/bin on your system some of these steps could require root privileges. If you don't want to use root privileges here, please move Exosphere to a different folder in your home directory that is in your PATH.

>>