Virtual environment

Is a self-contained directory that provides a way to manage dependencies and isolate project-specific configurations in Python (and other programming languages). It allows developers to create a separate environment for each project, ensuring that each project can have its own dependencies, regardless of what dependencies every other project has.
Among other things, it is also:
  1. A container for OS-specific libraries and binaries that are needed for a project. Commonly called .venv or venv
  2. Not under version control, such as git
  3. Considered disposable. That is, easy to delete and easy to recreate
  4. Not considered something that can be moved or copied. It must be created in place.
Command to create a virtual environment

python -m venv /path/to/new/virtual/environment
Command(s) for activating a virtual environment under POSIX systems

source PATH_TO_VENV/bin/activate
Command(s) for activating a virtual environment under Windowsystems

PATH_TO_VENV\Scripts\Activate.ps1


heart
0
3 connected dots
0

Used in

I will be busy developing a new project. His name is SearchResultParser. Its essence is to parse data from the search results of various search engines, such as google, youtube, yandex and others.
In this article, I will describe a process of integrating the <b>React</b> framework into the Django website. We will configure a communication API between both of them. Also, a TailwindCSS library will be installed.
This is an article that is going to introduce you to my new project/webtool, SearchResultParser. Also, from this article, you can navigate to any interesting article for you. See them in the end.
In this article, you will know the way to integrate the React framework into a Django project. As a result, you will get a full-stack app/website. Also in the article, you can find video-tutorial and downloadable samples for personal studies.