Development SetupΒΆ
Important
The standard installation method can be found in the Quickstart. These instructions are for development purposes.
Fork the GitHub project to your account. Then, run the following with your GitHub handle in place of GITHUB_NAME:
$ git clone https://github.com/GITHUB_NAME/in2lambda
$ cd in2lambda
The project can then be installed using poetry: (make sure you are in the top folder, which is the folder that contains pyproject.toml file)
$ poetry install
$ poetry shell
$ pre-commit install
$ in2lambda --help
To exit the environment:
$ exit
Using pip
Using pip alone is not recommended since it only installs the necessary dependencies to run in2lambda
, without any developer/documentation libraries. However, it could be useful for testing small modifications.
First, we create and activate a virtual environment:
$ python -m venv env
$ source env/bin/activate
Then install in editable mode:
$ pip install -e .
$ in2lambda --help