Formula 'virtualenvwrapper' : virtualenvwrapper.sh overrides environment variables with hardcoded values. #5827
-
Output of
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
The original file is at
They are user overridable (except for $ sh -x $(which virtualenvwrapper.sh) 2>&1 | grep 'export VIRTUALENVWRAPPER_VIRTUALENV='
+ export VIRTUALENVWRAPPER_VIRTUALENV=/opt/homebrew/Cellar/virtualenvwrapper/6.1.1/libexec/bin/virtualenv
$ VIRTUALENVWRAPPER_VIRTUALENV=override sh -x $(which virtualenvwrapper.sh) 2>&1 | grep 'export VIRTUALENVWRAPPER_VIRTUALENV='
+ export VIRTUALENVWRAPPER_VIRTUALENV=override |
Beta Was this translation helpful? Give feedback.
-
@branchvincent Yes, it does work like you say. Why is |
Beta Was this translation helpful? Give feedback.
-
@branchvincent Thx. I had misunderstood the purpose of |
Beta Was this translation helpful? Give feedback.
I believe
VIRTUALENVWRAPPER_PYTHON
is just the python where virtualenvwrapper is installed so the shell script can call it. Since it's packaging-related configuration, I can't think of a reason why a user would need to override it.