What are virtualenvs?

Technology CommunityCategory: PythonWhat are virtualenvs?
VietMX Staff asked 3 years ago

virtualenv is what Python developers call an isolated environment for development, running, debugging Python code. It is used to isolate a Python interpreter together with a set of libraries and settings. Together with pip, it allows us to develop, deploy and run multiple applications on a single host, each with their own version of the Python interpreter, and separate set of libraries.