-
Notifications
You must be signed in to change notification settings - Fork 0
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
ModuleNotFoundError: No module named 'bilix' #18
Comments
Hi, it seems that you miss the lines: poetry export -f requirements.txt | pip install -r /dev/stdin This cmd would help install all the dep python pkgs. Also, you can install pkgs by pip directly if you don't have poetry: pip install you-get yt-dlp bilix and call with: (notice that the url should not include any parameter) python3 download.py -u https://www.ixigua.com/7168489715828851215 howeverDownloading ixigua depends on |
This code is only for unix not for cmd or power shell on windows. I ran but got My py version is 3.9.4 |
Hi, thank you for point out the install problems for non-poetry envs I have updated my code and you can run after pull: poetry export -f requirements.txt --output requirements.txt --without-hashes
pip install -r requirements.txt again to install all deps |
The text was updated successfully, but these errors were encountered: