Installation

Install the package

Follow this procedure to prepare the environment and install Fed2Tier:

  1. Install a Python 3.8 (>=3.6, <=3.9) virtual environment using venv.

See the Venv installation guide for details.

  1. Create a new environment for the project.
    1. Using Virtual Environment
      $ python3 -m venv env
      
    2. Using conda
      $ conda create -n env python=3.9
      
  2. Activate the virtual environment.

    1. Virtual Environment
      $ source env/bin/activate
      
    2. Conda Environment
      $ conda activate env
      
  3. Install the Fed2Tier package.

    1. Clone the Fed2Tier repository:

      $ git clone https://github.com/apoorvakliv/fed2tier
      $ cd fed2tier
      
    2. Install dependencies:

      $ pip install -r requirements.txt