DEV Community

hub
hub

Posted on

PyCharm and Python-devel-environment

*PyCharm Virtual Environments (venv) who explains *

i am diving into all that:

from what i have read: ... we can say the following:

PyCharm makes it possible to use the virtualenv tool to create a project-specific isolated virtual environment. Well - the main purpose of virtual environments is to manage settings and dependencies of a particular project regardless of other Python projects.

Among other IDEs PyCharm is, in fact, just a “wrapper” for the suite of tools.

The virtual environment is a means to isolate one python project from another ones and, most importantly, from the rest of the system.

i am about to learn how to set up the python virtual environment. my friends told me: A virtual environment is a standard Python facility that allows us have more than one project on our machine and for each project to have different dependencies.
well that does means we don’t have to worry about installing a library on our root system when we only actually need it for our project. Pycharm recognises and supports virtual environments, and has the ability to create them for a project using the settings GUI.

Zum thema vgl auch. https://stackoverflow.com/q/41573587/9283927

**Schaut vielleicht auch mal hier vorbei: **https://pytude.readthedocs.io/de/latest/venv/

Top comments (0)