-
Notifications
You must be signed in to change notification settings - Fork 128
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
Can't find libtorchtext.so when executing file #591
Comments
Sounds like you need to collect binaries from the And since you're trying to use |
FWIW, I plan to implement proper official hooks for |
Hi @rokm,
moreover, my warning is same as previous issue :
|
Can we see the whole run-time error message, then? Also, what versions of |
Don't do this. Symlinking a system-installed file into application bundle make the application bundle non-portable. |
If If it was not collected, you might need to copy it manually or add |
I installed the detailed message is
|
Following the steps above,
|
It is killed because of dylib duplication - that's why you need to also apply steps from #375. |
I try to copy *dylib manually and new error message is
|
Description of the issue
As title, the issue is executing the unix file, the
torchtext
module can't successfully import.I also try to add the path
/Users/tong/opt/anaconda3/envs/scikit_xgb/lib/python3.11/site-packages/torchtext/lib
into my .zshrc, likeexport PATH="/Users/tong/opt/anaconda3/envs/scikit_xgb/lib/python3.11/site-packages/torchtext/lib:$PATH"
Context information (for bug reports)
Output of
pyinstaller --version
:5.11.0
Version of Python: 3.11.3
Platform: Mac OS
How you installed Python: conda
Did you also try this on another platform? Does it work there? No
try the latest development version, using the following command:
(https://github.com/pyinstaller/pyinstaller/wiki/If-Things-Go-Wrong) and
Make sure everything is packaged correctly
--noupx
or setupx=False
in your .spec-file--debug
topyi-makespec
orpyinstaller
or useEXE(..., debug=1, ...)
in your .spec file.A minimal example program which shows the error
Stacktrace / full error message
Please also see https://github.com/pyinstaller/pyinstaller/wiki/How-to-Report-Bugs
for more about what would use to solve the issue.
The text was updated successfully, but these errors were encountered: