-
Notifications
You must be signed in to change notification settings - Fork 64
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
CondaPkg opt out doesn't work #301
Comments
I can't reproduce this issue. My guess is that you already have PythonCall loaded in the Julia session before you run that code. Perhaps you have |
This issue has been marked as stale because it has been open for 60 days with no activity. If the issue is still relevant then please leave a comment, or else it will be closed in 7 days. |
This issue has been closed because it has been stale for 7 days. You can re-open it if it is still relevant. |
Was going back through my old issues and I also found I couldn't reproduce this - I think you were probably right that I had run something in my Julia session before. |
Affects: PythonCall
Describe the bug
Opting out of CondaPkg.jl by setting an environment variable as stated in the documentation doesn't work.
Steps to reproduce: in a directory with a Python venv, run
Expected output is
/path/to/pwd/.venv/bin/python
, actual output is/path/to/pwd/.CondaPkg/env/bin/python
.Your system
Please provide detailed information about your system:
Additional context
I'm doing this so I can import a Python library on a local path and keep using modified versions of it, like with
conda develop
orpip install -e
. I initially got it working by installing in the venv and pyimporting from there, but that doesn't seem to work now. If there's a way to doconda develop
-style importing from CondaPkg I'd be okay with that too!The text was updated successfully, but these errors were encountered: