# Install First clone the repository to your local machine:\ `git clone git@gitlab.com:qumphy/qumphy-software.git` And `cd` int the repository: `cd qumphy-software` Then create a new `pip` or `conda` environment and activate it:\ Using **Conda**: ```sh conda env create -f environment.yml -n qumphy conda activate qumphy conda-develop . ``` Using **pip**: ```sh python3 -m venv .venv echo "*" > .venv/.gitignore # To exclude the pip env from git tracking source .venv/bin/activate pip install -r requirements.txt pip install -e . ``` Now qumphy is ready to be used!