mirror of
https://github.com/brentvollebregt/auto-py-to-exe.git
synced 2026-04-25 19:55:49 +03:00
[GH-ISSUE #245] The system cannot find the path specified #218
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @AmirHosseinCV on GitHub (Feb 21, 2022).
Original GitHub issue: https://github.com/brentvollebregt/auto-py-to-exe/issues/245
Environment:
Python 3.10 (Installed from python.org) - Virtual environment
Error message:
Imported packages:
SpotDL
My code:
@brentvollebregt commented on GitHub (Feb 23, 2022):
ytmusicapi has a locales folder that is not automatically included by PyInstaller - you need to manually include it
@AmirHosseinCV commented on GitHub (Feb 23, 2022):
@brentvollebregt Thank you so much! It solved the problem. However, I'm still getting many other errors that randomly change after every run. Something like:
Some package names:
pytube,yt-dlp,rich,mutagen,requests,BeautifulSoup4, etc.I tried importing them in my main file and adding them using
--hidden-importand--collect-*options, but they didn't solve the problem.Is it possible to ask it to import all packages installed in my venv (and their files)?
@brentvollebregt commented on GitHub (Feb 24, 2022):
This looks like a PyInstaller issue - do you still get these errors when using the generated command at the bottom of the UI?
@AmirHosseinCV commented on GitHub (Feb 24, 2022):
@brentvollebregt Yes. So I'll close my issue. Thank you for your time and the great project.