How to install a 'subpackage' with Poetry? #5124
-
HI, I have a problem installing a 'subpackage' (don't know their real name) but I don't know how. I want to install Pylama because it has other Linting packages. I'm using Poetry for Package Managment, but I don't know how to do this. Pylama's documents indicate that if you use pip you have to use
With that I only install the basic from pylama, the same as doing Afterwards, I created a virtual environment with virtualenv and use I'm running this in Lubuntu, with Python 3.8.10 Hope someone can help me, thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
poetry install pylama[all] does install the extras package named "all" for pylama, leading to a pyproject.toml off: pylama = {extras = ["all"], version = "^8.3.7"} Please stick to one package manager per virtual environment, either use pip or poetry. |
Beta Was this translation helpful? Give feedback.
poetry install pylama[all] does install the extras package named "all" for pylama, leading to a pyproject.toml off:
pylama = {extras = ["all"], version = "^8.3.7"}
Please stick to one package manager per virtual environment, either use pip or poetry.