

You do not have the time to migrate the project to Python 3

So what exactly are conda environments, and why use them?Ī conda environment is an isolated working copy of specific versions of The solution for this problem is to create a self-containedĮnvironment per project, which contains a particular version of Python installation plus a number of Is important to be able to keep these configurations separate to avoid confusion between projects. This means that each Python application you work with may require a different setup and a set of dependencies so it because they require that a particularīug has been fixed in a newer version of the library), or a specific version of Python interpreter. Specific version of an external library (e.g. That you will have to use a package manager tool to install them on your system. Python applications often use external libraries that don’t come as part of the standard Python distribution. This means that our code requires two external libraries (also called third-party packages or dependencies).

From matplotlib import pyplot as plt import numpy as np
