'Download python library from Github "requires a different Python"
I'm trying to download python library from github, by using this comand in cmd: pip install --upgrade --force-reinstall https://github.com/BurnySc2/python-sc2/archive/develop.zip
But in the end, I catch an error:
ERROR: Package 'burnysc2' requires a different Python: 3.10.2 not in '<3.10,>=3.7'
I have the latest version of Python (3.10.2) Is there any ways to solve this problem?
Solution 1:[1]
try download the wheel file and force install it using
pip install <package-name> --ignore-requires-python --target <directory>
but it probably won't work
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Fred Wang |