Installation
Install the package
Follow this procedure to prepare the environment and install Fed2Tier:
Install a Python 3.8 (>=3.6, <=3.9) virtual environment using venv.
See the Venv installation guide for details.
- Create a new environment for the project.
- Using Virtual Environment
$ python3 -m venv env
- Using conda
$ conda create -n env python=3.9
Activate the virtual environment.
- Virtual Environment
$ source env/bin/activate
- Conda Environment
$ conda activate env
Install the Fed2Tier package.
Clone the Fed2Tier repository:
$ git clone https://github.com/apoorvakliv/fed2tier $ cd fed2tier
Install dependencies:
$ pip install -r requirements.txt