-
-
Notifications
You must be signed in to change notification settings - Fork 222
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
load_ssl and load__ctypes hooks for copying SSL and other DLLs don't work in a pipenv virtualenv #591
Comments
i have this problem with gcloud that it's not get copy from venv folder in to the new exe it think it is like this problems. Thanks |
@manziEric Your issue is related to #216 and #586 |
@marcelotduarte sorry if its a little bit annoying, but i have not been able to fix the problem with #216 and #586 , i'm not a very experienced python programmer. So i have not been able to solve the problem with the info in #216 and #586 . |
@manziEric If my PR #608 is merged, in the next release will fix your issue (instructions to test in #586) |
@manziEric |
@vashek |
Yes, I still do. With Python 3.8.2 on Windows in a pipenv environment and cx-Freeze 6.2 and Pillow 7.2.0, build fails with: |
@vashek |
@vashek I created a Github action to test some samples with pipenv, using the current master. |
cx_Freeze 6.3 has just been released. |
This is like issue #437, except that I'm running setup.py in a virtualenv created by pipenv.
In that case, the SSL DLLs need to be searched in
sys.path
, not just insys.base_prefix/"DLLs"
, becausesys.base_prefix
is something likeC:\Users\USERNAME\.virtualenvs\PROJECTNAME-HASH
but there is noDLLs
subdirectory there.Workaround in setup.py:
The text was updated successfully, but these errors were encountered: