Virtual environments with Python

Working with Python we have a lot of libraries or dependencies.

Our projects use just a version of each dependency. It’s very important to decouple the list of dependencies between projects. Otherwise, our applications could have an undesired behaviour.

[Read More]