ohmyzsh: Virtualenv wrapper not working?
Hey, I have installed virtualenvwrapper using pip.I am aware that there is a plugin for using it but it doesn’t seem to work for me when I run mkvirtualenv xyz. So are there some configurations I need to do?
About this issue
- Original URL
- State: closed
- Created 10 years ago
- Comments: 17 (2 by maintainers)
Commits related to this issue
- Fix default location of the virtualenvwrapper script (#6348) The `virtualenvwrapper` script has been relocated to `/usr/local/bin/virtualenvwrapper.sh`. Update the plugin to look in the new locatio... — committed to ohmyzsh/ohmyzsh by ianchesal 6 years ago
- Fix default location of the virtualenvwrapper script (#6348) The `virtualenvwrapper` script has been relocated to `/usr/local/bin/virtualenvwrapper.sh`. Update the plugin to look in the new locatio... — committed to aunsira/oh-my-zsh by ianchesal 6 years ago
- Fix default location of the virtualenvwrapper script (#6348) The `virtualenvwrapper` script has been relocated to `/usr/local/bin/virtualenvwrapper.sh`. Update the plugin to look in the new locatio... — committed to gsemet/oh-my-zsh by ianchesal 6 years ago
- Fix default location of the virtualenvwrapper script (#6348) The `virtualenvwrapper` script has been relocated to `/usr/local/bin/virtualenvwrapper.sh`. Update the plugin to look in the new locatio... — committed to seth-cohen/oh-my-zsh by ianchesal 6 years ago
- Fix default location of the virtualenvwrapper script (#6348) The `virtualenvwrapper` script has been relocated to `/usr/local/bin/virtualenvwrapper.sh`. Update the plugin to look in the new locatio... — committed to jmartindf/oh-my-zsh by ianchesal 6 years ago
- Fix default location of the virtualenvwrapper script (#6348) The `virtualenvwrapper` script has been relocated to `/usr/local/bin/virtualenvwrapper.sh`. Update the plugin to look in the new locatio... — committed to sagischwarz/ohmyzsh by ianchesal 6 years ago
- Fix default location of the virtualenvwrapper script (#6348) The `virtualenvwrapper` script has been relocated to `/usr/local/bin/virtualenvwrapper.sh`. Update the plugin to look in the new locatio... — committed to chihchun/oh-my-zsh by ianchesal 6 years ago
- Fix default location of the virtualenvwrapper script (#6348) The `virtualenvwrapper` script has been relocated to `/usr/local/bin/virtualenvwrapper.sh`. Update the plugin to look in the new locatio... — committed to kankongmeng/oh-my-zsh by ianchesal 6 years ago
- Fix default location of the virtualenvwrapper script (#6348) The `virtualenvwrapper` script has been relocated to `/usr/local/bin/virtualenvwrapper.sh`. Update the plugin to look in the new locatio... — committed to spiliopoulos/zsh-config by ianchesal 6 years ago
Add it to your .zshrc file:
export WORKON_HOME=~/Envs mkdir -p $WORKON_HOME source /usr/local/bin/virtualenvwrapper.sh
The source part depends of where virtualenvwrapper is installed.
It says
zsh: command not found: mkvirtualenv. What do I need to add to.zshrc?