-
-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
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
Error when trying to install on pip #78
Comments
I get the same error with python3.10 |
same probleme here |
same error here with python 3.8.10 |
Same, Fedora 35, latest pip & python |
same error here with Windows11 ,latest python & pip |
Happens on pip installing |
I solve this by editing the I download the source code of version 1.2.9 and edit the Original: def install_package(package):
import pip
try:
from pip._internal import main
main.main(['install', package])
except AttributeError:
from pip import __main__
__main__._main(['install', package]) Modified: def install_package(package):
import pip
try:
from pip._internal import main
main(['install', package]) # main.main to main
except AttributeError:
from pip import __main__
__main__._main(['install', package]) Then: |
pip3 install -U video-to-ascii==1.2.8 works fine for me |
I get |
Be sure to install |
Im getting this error after trying to install it on kali linux wsl2 or windows normally.
The text was updated successfully, but these errors were encountered: