Difference between revisions of "Quickstart/Virtual Environments"
From HPC
m (→What is a Virtual Environment?) |
m (→What is a Virtual Environment?) |
||
Line 1: | Line 1: | ||
==What is a Virtual Environment?== | ==What is a Virtual Environment?== | ||
− | A virtual environment is a named, isolated, working copy of Python that maintains its own files, directories, and paths so that you can work with specific versions of libraries or Python itself without affecting other Python projects | + | A virtual environment is a named, isolated, working copy of Python that maintains its own files, directories, and paths so that you can work with specific versions of libraries or Python itself without affecting other Python projects. |
− | |||
− | |||
==Why should you use a Virtual Environment?== | ==Why should you use a Virtual Environment?== |
Revision as of 09:15, 3 November 2022
What is a Virtual Environment?
A virtual environment is a named, isolated, working copy of Python that maintains its own files, directories, and paths so that you can work with specific versions of libraries or Python itself without affecting other Python projects.