PyCharm Concepts: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
{{External|https://virtualenv.pypa.io/en/latest/index.html}} | {{External|https://virtualenv.pypa.io/en/latest/index.html}} | ||
<code>virtualenv</code> is a tool to create isolated Python environments. | <code>virtualenv</code> is a tool to create isolated Python environments. A virtual environment manages settings and dependencies of a particular project, regardless of other Python projects. | ||
<code>virtualenv</code> is bundled in PyCharm, which uses it to create a project-specific virtual environment. |
Revision as of 03:24, 22 December 2021
Internal
Virtual Environment
virtualenv
is a tool to create isolated Python environments. A virtual environment manages settings and dependencies of a particular project, regardless of other Python projects.
virtualenv
is bundled in PyCharm, which uses it to create a project-specific virtual environment.