Installation

Follow the steps below to setup your Green-DCC environment and install the necessary dependencies.

Dependencies

  1. Linux OS (tested on Ubuntu 20.04)

  2. Python 3.10+

  3. Ray 2.4.0 (installed when installing the requirements.txt file)

  4. Conda (for creating virtual environments, optional)

  5. Git (distributed version control system, optional)

  6. Dependencies listed in the requirements.txt file

Installation Steps

Clone the latest Green-DCC version from GitHub using:

git clone https://github.com/HewlettPackard/green-dcc.git

If using SSH, execute:

git clone git@github.com:HewlettPackard/green-dcc.git

Navigate to the project repository:

cd green-dcc

Create a Conda environment if you prefer using a virtual Python environment to manage packages for this project (optional):

conda create -n greendcc python=3.10
conda activate greendcc

Install the required packages using pip:

pip install -r requirements.txt