PyCharm Concepts: Difference between revisions
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
=Internal= | =Internal= | ||
* [[PyCharm#Subjects|PyCharm]] | * [[PyCharm#Subjects|PyCharm]] | ||
=Python Interpreter= | |||
=Virtual Environment= | =Virtual Environment= |
Revision as of 03:28, 22 December 2021
Internal
Python Interpreter
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