A python package can only be used after three pip installation attempts

Viewed 21

For my Python package, I need to install "rasa" package on my venv. I have this requirements:

install_requires=[
    "Click==8.0.3",
    "SQLAlchemy==1.4.31",
    "pytest==6.2.5",
    "pytest-cov==3.0.0",
    "pylint==2.12.2",
    "pytest-dotenv==0.5.2",
    "python-dotenv==0.19.2",
    "black==22.1.0",
    "rasa==3.2.7"
],

When I run pip install ., I get 4 or 5 warnings about incompatibilities. Then I run pip install rasa==3.2.7 and some packages are modified, but my package still doesn't work. Then I repeat this operation, other packages are modified and the package is working.

I've tried to install everything separately and it doesn't work either.

0 Answers
Related