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

Most upvoted comments

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?