I know that which virtualenvwrapper.sh will locate the virtualenvwrapper bash script.

But, how can I determine which version of virtualenvwrapper is installed?

link|improve this question

79% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Not an elegant solution, but here's how I determined that I have version 2.10.1 of virtualenvwrapper installed:

$ which virtualenvwrapper.sh
/Library/Frameworks/Python.framework/Versions/2.7/bin/virtualenvwrapper.sh
$ cd /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/
$ ls virtualenvwrapper*
virtualenvwrapper-2.10.1-py2.7-nspkg.pth
virtualenvwrapper-2.10-1-py2.7.egg-info
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.