I'm trying to run a Django project. The project has the files poetry.lock
and pyproject.toml
and it runs on other computers, but I can't install it on my computer (macOS v12 (Monterey)).
On my computer with the newly created virtual environment (venv), when I run those commands:
python3.10 -m venv venv
source venv/bin/activate
poetry install
I receive the message:
No dependencies to install or update.
When I run the poetry show
command, several libraries are listed. But when I run python manage.py runserver
, Python doesn't find any libraries.
(I can run older Python projects on my computer.)