first (original requirements.txt)
ERROR: Ignored the following versions that require a different python version: 0.59.0 Requires-Python >=3.9; 0.59.0rc1 Requires-Python >=3.9; 0.59.1 Requires-Python >=3.9; 1.25.0 Requires-Python >=3.9; 1.25.0rc1 Requires-Python >=3.9; 1.25.1 Requires-Python >=3.9; 1.25.2 Requires-Python >=3.9; 1.26.0 Requires-Python <3.13,>=3.9; 1.26.0b1 Requires-Python <3.13,>=3.9; 1.26.0rc1 Requires-Python <3.13,>=3.9; 1.26.1 Requires-Python <3.13,>=3.9; 1.26.2 Requires-Python >=3.9; 1.26.3 Requires-Python >=3.9; 1.26.4 Requires-Python >=3.9; 2.0.0b1 Requires-Python >=3.9; 2.0.0rc1 Requires-Python >=3.9; 3.8.0 Requires-Python >=3.9; 3.8.0rc1 Requires-Python >=3.9; 3.8.1 Requires-Python >=3.9; 3.8.2 Requires-Python >=3.9; 3.8.3 Requires-Python >=3.9; 3.8.4 Requires-Python >=3.9; 3.9.0rc2 Requires-Python >=3.9
ERROR: Could not find a version that satisfies the requirement polygon3==3.0.9.1s (from versions: 3.0.8.linux-x86_64, 3.0.7, 3.0.8, 3.0.9a0, 3.0.9, 3.0.9.1)
ERROR: No matching distribution found for polygon3==3.0.9.1s
second try (edit poltgon3==3.0.9.1)
ERROR: Cannot install -r requirements.txt (line 10), -r requirements.txt (line 12), -r requirements.txt (line 13), -r requirements.txt (line 16), -r requirements.txt (line 19), -r requirements.txt (line 3), -r requirements.txt (line 4), -r requirements.txt (line 6) and numpy==1.20.0 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested numpy==1.20.0
matplotlib 3.3.3 depends on numpy>=1.15
numba 0.51.2 depends on numpy>=1.15
opencv-python 4.5.5.62 depends on numpy>=1.14.5; python_version >= "3.7"
opencv-python 4.5.5.62 depends on numpy>=1.17.3; python_version >= "3.8"
scipy 1.5.2 depends on numpy>=1.14.5
scikit-learn 0.23.2 depends on numpy>=1.13.3
shapely 2.0.0 depends on numpy>=1.14
lvis 0.5.3 depends on numpy>=1.18.2
pandas 2.0.1 depends on numpy>=1.20.3; python_version < "3.10"
To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip attempt to solve the dependency conflict
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts
third try (edit numpy >=1.20.0)
ERROR: Cannot install -r requirements.txt (line 21) and rapidfuzz==2.13.7 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested rapidfuzz==2.13.7
levenshtein 0.23.0 depends on rapidfuzz<4.0.0 and >=3.1.0
To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip attempt to solve the dependency conflict
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts
finaly edit rapidfuzz>=2.13.7 will work for me.
I think there is some problem in requirements.txt
first (original requirements.txt)
second try (edit poltgon3==3.0.9.1)
ERROR: Cannot install -r requirements.txt (line 10), -r requirements.txt (line 12), -r requirements.txt (line 13), -r requirements.txt (line 16), -r requirements.txt (line 19), -r requirements.txt (line 3), -r requirements.txt (line 4), -r requirements.txt (line 6) and numpy==1.20.0 because these package versions have conflicting dependencies. The conflict is caused by: The user requested numpy==1.20.0 matplotlib 3.3.3 depends on numpy>=1.15 numba 0.51.2 depends on numpy>=1.15 opencv-python 4.5.5.62 depends on numpy>=1.14.5; python_version >= "3.7" opencv-python 4.5.5.62 depends on numpy>=1.17.3; python_version >= "3.8" scipy 1.5.2 depends on numpy>=1.14.5 scikit-learn 0.23.2 depends on numpy>=1.13.3 shapely 2.0.0 depends on numpy>=1.14 lvis 0.5.3 depends on numpy>=1.18.2 pandas 2.0.1 depends on numpy>=1.20.3; python_version < "3.10" To fix this you could try to: 1. loosen the range of package versions you've specified 2. remove package versions to allow pip attempt to solve the dependency conflict ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflictsthird try (edit numpy >=1.20.0)
ERROR: Cannot install -r requirements.txt (line 21) and rapidfuzz==2.13.7 because these package versions have conflicting dependencies. The conflict is caused by: The user requested rapidfuzz==2.13.7 levenshtein 0.23.0 depends on rapidfuzz<4.0.0 and >=3.1.0 To fix this you could try to: 1. loosen the range of package versions you've specified 2. remove package versions to allow pip attempt to solve the dependency conflict ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflictsfinaly edit rapidfuzz>=2.13.7 will work for me.
I think there is some problem in requirements.txt