Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialchrishill4
1,567 PointsHow to delete the Virtualenv out of my windows 7 command prompt now?
I was following along with Kenneth Love on Virtualenv using my actual command promp in windows 7. I was just wondering how to reverse the steps and delete it all. Thanks Chris.
2 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsIf you are still within the virtualenv, you can exit using the command deactivate
If you wish to remove the virtualenv after you've existed, then remove the venv
directory (or whatever it was named at creation time).
chrishill4
1,567 PointsThankyou for the information.