finos / symphony-bdk-python

Symphony Python Bot Development Kit (BDK)
https://symphony-bdk-python.finos.org/
Apache License 2.0
31 stars 34 forks source link

Error: Could not find a version that satisfies the requirement symphony-bdk-python>=2.0.0 (from versions: none) #290

Closed yohamta closed 2 years ago

yohamta commented 2 years ago

I have created a project with yo @finos/symphony, and then when I run pip3 install -r requirements.txt command, the bellow error occurs. How could it be solved?

$ python3 --version
Python 3.6.9

$ cat requirements.txt
symphony-bdk-python>=2.0.0
Jinja2~=3.0

$ pip3 install -r requirements.txt
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement symphony-bdk-python>=2.0.0 (from versions: none)
ERROR: No matching distribution found for symphony-bdk-python>=2.0.0
ystxn commented 2 years ago

The BDK requires Python 3.8.0. When you have a lower version and perform a pip install, no candidates are returned from PyPI which causes that error.

yohamta commented 2 years ago

Sure, thanks for the answer.