... | @@ -22,9 +22,14 @@ apt-get install python3 python3-dev python3-pip python3-venv |
... | @@ -22,9 +22,14 @@ apt-get install python3 python3-dev python3-pip python3-venv |
|
The idea is to create a virtual python environment, in order not to "pollute" your system. This virtual environment will be contained in a folder (fidle-env). The easiest way is to create this folder next to the one containing the Fidle notebooks :
|
|
The idea is to create a virtual python environment, in order not to "pollute" your system. This virtual environment will be contained in a folder (fidle-env). The easiest way is to create this folder next to the one containing the Fidle notebooks :
|
|
```plaintext
|
|
```plaintext
|
|
<working directory>
|
|
<working directory>
|
|
├── fidle Contient les notebooks
|
|
├── fidle Contains notebooks
|
|
├── fidle-datasets Contient les datasets
|
|
├── fidle-datasets Contains datasets
|
|
└── fidle-env Environnement virtuel
|
|
└── fidle-env Virtual environment
|
|
|
|
```
|
|
|
|
To create your virtual env from your working directory, get a shell and go into your working directory :
|
|
|
|
```
|
|
|
|
cd <working directory>
|
|
|
|
python -m venv --system-site-packages fidle-env
|
|
```
|
|
```
|
|
|
|
|
|
To create your virtual env from your working directory :
|
|
To create your virtual env from your working directory :
|
... | | ... | |