-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Update electrum-env #10018
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
Update electrum-env #10018
Conversation
needed, or fail.
This looks weird. Please provide more details what is failing for you. Are you running Linux? Which distro and version? |
The problem could have been solved by completely removing the export, but since it is there I chose not to touch it and added the local paths instead. however: os: debian 12
|
@@ -34,5 +34,6 @@ export PYTHONPATH="$PYTHONPATH:"\ | |||
"/usr/lib/python3/dist-packages:"\ | |||
"/usr/lib/python${PYTHON_VER}/site-packages:" | |||
|
|||
export PYTHONPATH="$PYHTONPATH:./env/lib/python${PYTHON_VER}/site-packages:./env/lib/python${PYTHON_VER}/dist-packages" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the only reason this "works" in your use case is because of the typo :P
PYHTONPATH
(t<->h)
Ok... I think modifying the PYTHONPATH is causing more troubles than it's worth. We'll take a patch that removes all the PYTHONPATH-mangling, installs the |
needed, or fail.