InterviewSolution
Saved Bookmarks
| 1. |
Python Virtual Environment |
|
Answer» Virtual Environments are used to encapsulate certain Python Libraries of Python for single project, which might not be used in other projects, rather than installing those dependencies globally. Installation Steps: pip install virtualenv pip install virtualenvwrapper-winUsage Steps: mkvirtualenv Test # Make virtual environment called Test#setprojectdir . deactivate # To move to something else in the command #line. workon Test # Activate environment |
|