Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can one uninstall virtualenvwrapper?

I believe that I have installed virtualenvwrapper incorrectly (the perils of following different tutorials for python setup).

I would like to remove the extension completely from my Mac OSX system but there seems to be no documentation on how to do this.

Does anyone know how to completely reverse the installation? Its wreaking havoc with my attempts to compile python scripts.

like image 396
ncon Avatar asked May 25 '17 13:05

ncon


People also ask

How do I disable VENV?

You can deactivate a virtual environment by typing deactivate in your shell. The exact mechanism is platform-specific and is an internal implementation detail (typically, a script or shell function will be used).

What is virtualenvwrapper?

virtualenvwrapper is a set of extensions to Ian Bicking's virtualenv tool. The extensions include wrappers for creating and deleting virtual environments and otherwise managing your development workflow, making it easier to work on more than one project at a time without introducing conflicts in their dependencies.


1 Answers

pip uninstall virtualenvwrapper

Or

sudo pip uninstall virtualenvwrapper

worked for me.

like image 153
Susie Sargsyan Avatar answered Oct 01 '22 03:10

Susie Sargsyan