PyCharm Concepts: Difference between revisions
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
<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 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. | <code>virtualenv</code> is bundled in PyCharm, which uses it to create a project-specific virtual environment. For Python 3.3+, the built-in venv module is used, instead of <code>virtualenv</code> |
Revision as of 03:25, 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. For Python 3.3+, the built-in venv module is used, instead of virtualenv