diff --git a/README.md b/README.md index c711250..9bfaca9 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ conda activate lightning-ai pip install -e . # if desired, install extras pip install -r requirements/extras.txt +{{ set interpreter in IDE }} ``` _venv_ @@ -59,6 +60,17 @@ source venv/bin/activate pip install -e . # if desired, install extras pip install -r requirements/extras.txt +{{ set interpreter in IDE }} +``` + +_poetry_ +```sh +cd {{ path to clone }} +poetry install +# if desired, install extras +poetry shell +pip install -r requirements/extras.txt +{{ set interpreter in IDE }} ``` #### Initiating a New Training Run diff --git a/pyproject.toml b/pyproject.toml index 50f7030..e4a4329 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ exclude = [ pod = "lightning_pod.cli.console:main" [tool.poetry.dependencies] -python = "3.9" +python = "<3.10" lightning = ">=2022.8.2" pytorch-lightning = ">=1.7.0" lightning-app = ">=0.5.4"