Fishshell implementation of the Virtualenvwrapper.
With tab completion!
First download the script to your pc.
wget https://raw.githubusercontent.com/mbodock/FishEnv/master/fishenv.fishThen source the file in you config.fish. That's it.
mkvirtualenv <env>Creates a virtualenv in ~/.fishenvs/ which will points to the current directory.rmvirtualenv <env>Deletes a virtualenvmktmpenv [env]Creates a temporary virtualenv that will be deleted after deactivation.workon <env>this command will activate the virtualenv and switch to the projects directory.workon_dir [arg]Changes the directory of the working env or env.deactivateDeactivates the current virtualenv. Also deletes if it is a temporary env
If you want your VirtualEnv with python 3 just pass the optinal argument --python=/usr/bin/python3.