Fishshell implementation of the Virtualenvwrapper.
With tab completion!
First download the script to your pc.
wget https://raw.githubusercontent.com/mbodock/FishEnv/master/fishenv.fish
Then 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.deactivate
Deactivates 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
.