-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Description
Description
Here I'm going to install a dependency named colorama version 0.4.6
using pip in windows 10 and pip version is pip 21.3.1 from d:\pythonrepository\python36\lib\site-packages\pip (python 3.6)
You can see this version is existing like below
The dependency is existing in pypi.org
since 2022 and today is 2023-04-14 but I have got an error when installing it.
Here is my pip.ini file.
[global]
index-url = https://pypi.org/simple
Here is the command and feedback, no 0.4.6
was found and I don't know why
$ pip install colorama==0.4.6
ERROR: Could not find a version that satisfies the requirement colorama==0.4.6 (from versions: 0.1, 0.1.1, 0.1.2, 0.1.3, 0.1.4, 0.1.5, 0.1.6, 0.1.7, 0.1.8, 0.1.9, 0.1.10, 0.1.11, 0.1.12, 0.1.13, 0.1.14, 0.1.15, 0.1.16, 0.1.17, 0.1.18, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.2.6, 0.2.7, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.3.6, 0.3.7, 0.3.8, 0.3.9, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5rc1, 0.4.5)
ERROR: No matching distribution found for colorama==0.4.6
$ pip3 install colorama==0.4.6
ERROR: Could not find a version that satisfies the requirement colorama==0.4.6 (from versions: 0.1, 0.1.1, 0.1.2, 0.1.3, 0.1.4, 0.1.5, 0.1.6, 0.1.7, 0.1.8, 0.1.9, 0.1.10, 0.1.11, 0.1.12, 0.1.13, 0.1.14, 0.1.15, 0.1.16, 0.1.17, 0.1.18, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.2.6, 0.2.7, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.3.6, 0.3.7, 0.3.8, 0.3.9, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5rc1, 0.4.5)
ERROR: No matching distribution found for colorama==0.4.6
$ pip3 install -i https://pypi.org/simple colorama==0.4.6
ERROR: Could not find a version that satisfies the requirement colorama==0.4.6 (from versions: 0.1, 0.1.1, 0.1.2, 0.1.3, 0.1.4, 0.1.5, 0.1.6, 0.1.7, 0.1.8, 0.1.9, 0.1.10, 0.1.11, 0.1.12, 0.1.13, 0.1.14, 0.1.15, 0.1.16, 0.1.17, 0.1.18, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.2.6, 0.2.7, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.3.6, 0.3.7, 0.3.8, 0.3.9, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5rc1, 0.4.5)
ERROR: No matching distribution found for colorama==0.4.6
Is ther anything that I missed or it is a bug?
Expected behavior
install successfully
pip version
21.3.1
Python version
3.6
OS
windows 10
How to Reproduce
just run pip install colorama==0.4.6
pip3 install colorama==0.4.6
or pip3 install -i https://pypi.org/simple colorama==0.4.6
Output
ERROR: Could not find a version that satisfies the requirement colorama==0.4.6 (from versions: 0.1, 0.1.1, 0.1.2, 0.1.3, 0.1.4, 0.1.5, 0.1.6, 0.1.7, 0.1.8, 0.1.9, 0.1.10, 0.1.11, 0.1.12, 0.1.13, 0.1.14, 0.1.15, 0.1.16, 0.1.17, 0.1.18, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.2.6, 0.2.7, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.3.6, 0.3.7, 0.3.8, 0.3.9, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5rc1, 0.4.5)
ERROR: No matching distribution found for colorama==0.4.6
Code of Conduct
- I agree to follow the PSF Code of Conduct.