Skip to content

Latest commit

Β 

History

History
52 lines (32 loc) Β· 1.09 KB

SETUP_ENV.md

File metadata and controls

52 lines (32 loc) Β· 1.09 KB

Create new enviornment πŸ‘¨πŸ»β€πŸ’»

Table of contents

Before starting further, make sure that you have conda (Anaconda) installed (otherwise, create a new env via virutalenv). We will create a new enviornment for the purpose of our labs:

conda create -n decision_modelling python=3 -y 

and activate it

conda activate decision_modelling

You can create your virtual enviornment without conda as well. In order to do that, make sure that you have virtualenv installed or else, you can install it via:

pip install virtualenv

Now, create your new enviornment called decision_modelling

virtualenv -p python3 decision_modelling

and then activate it via

source decision_modelling/bin/activate