How to use virtual environments
Posted on Sun 19 June 2022 in code • Tagged with python, R, julia
To not interfere with your os configuration and keep your project reproducible, you should use a virtual environment as long as possible.
Virtual environment are a way to isolate your project from the rest of the system, and to avoid dependencies conflicts.
Python Virtualenv
Lets start by installing the virtualenv …
Continue reading