We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When installing required packages using pip install -r requirements.txt, gotten:
pip install -r requirements.txt,
ERROR: Could not find a version that satisfies the requirement PIL==6.2.0 (from versions: none) ERROR: No matching distribution found for PIL==6.2.0
ERROR: Could not find a version that satisfies the requirement PIL==6.2.0 (from versions: none)
ERROR: No matching distribution found for PIL==6.2.0
I assume this is because the library name is actually Pillow, hence performing pip install Pillow==6.2.0 might be what we are looking for.
pip install Pillow==6.2.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When installing required packages using
pip install -r requirements.txt,
gotten:ERROR: Could not find a version that satisfies the requirement PIL==6.2.0 (from versions: none)
ERROR: No matching distribution found for PIL==6.2.0
I assume this is because the library name is actually Pillow, hence performing
pip install Pillow==6.2.0
might be what we are looking for.The text was updated successfully, but these errors were encountered: