Visual code python venv

Setting up Environments 🌲¶

The main purpose of using environments is to create a segregation between the dependencies of different python projects. It eliminates (at least tries to) dependency conflicts since each project has it’s own set of dependencies, isolated from one another.

Suppose you are working on two projects, Project_1 and Project_2 , both of which have a dependency on the same library, let’s say the awesome Requests library. Dependency conflict will arise, if for some reason, the two projects need different versions of Request library. For example, maybe Project_1 needs v1.0.0 , while Project_2 requires the newer v2.0.0 .

This can easily be avoided by using individual environment for each project where all the dependencies of the corresponding project will reside. There are multiple ways you can create environment. We’ll mainly focus on creating python3 based conda environment and native virtual environment .

Conda Environment¶

Installing Anaconda Distribution¶

Install anaconda on your machine. I personally prefer miniconda over the full fledged anaconda. The installation guide can be found here:

Creating Conda Environment¶

After installing anaconda, to create a python3 environment with a specific version of python, type the following command. This will create an environemnt named myenv with python 3.7:

$ conda create -n myenv python=3.7

Activating Conda Environment¶

After creating the conda environment, type the folling command to activate the myenv environment:

Deactivating Conda Environment¶

To deactivate, simply type:

Источник

Читайте также:  Javascript append script to document
Оцените статью