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-win

Usage Steps:

mkvirtualenv Test # Make virtual environment called Test
#setprojectdir .

deactivate # To move to something else in the command #line.

workon Test # Activate environment


Discussion

No Comment Found