Working with dependencies in Python¶
pip¶
Creating requirements.txt
¶
-
Install dependencies and save them to a lock file:
pipenv¶
Creating Pipfile.lock
¶
-
Install pipenv:
-
Create
Pipfile.lock
:
poetry¶
Creating poetry.lock
¶
If poetry.lock
does not already exist, Poetry will create it automatically when installing dependencies. If the file already exists, it will be updated. To do this, run the command:
```bash
poetry lock
```
This command will update the dependencies specified in pyproject.toml
and create or update the poetry.lock
file.