Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 1.13 KB

README.md

File metadata and controls

49 lines (39 loc) · 1.13 KB

This repository contains environment setup scripts -- these primarily focus on the Agent project, but in the future we'll standardize other projects on these.

cloud cluster Cluster Python Environment (Agent)

Setup

To setup the prophet environment (TensorFlow 1.7, Python 3.6):

make prophet

This installs everything you need, up to and including conda and the db2_cli.

To activate the environment, source the following script:

source /path/to/setup/activate_prophet.sh

You may want to alias the previous command or add it to your .bashrc.

Removal

To remove the prophet environment:

make clean_prophet

To remove all environments, conda, and the db2_cli (at your own risk!):

make cleanest_prophet

Note you will have to disconnect and reconnect to complete the conda uninstall.

Mac Python Environment (Agent)

Setup

To setup the prophet_mac environment (TensorFlow 1.7, Python 3.6):

make prophet_mac

To activate the environment, use:

source activate prophet_mac

Removal

To remove the prophet_mac environment:

make clean_prophet_mac