Skip to content
Snippets Groups Projects
README.md 1.13 KiB
Newer Older
AC4908's avatar
AC4908 committed
# Thesis idea



## Environment
This uses the Miniconda environment. To prepare a personalized environment you will need to install the following:
```
conda create --name "env name" python=3.9 -y
```
```
conda activate "env name"
```
```
conda install -c conda-forge cudatoolkit=11.2 cudnn=8.1.0 -y
```
```
pip install "tensorflow<2.11"
pip install jupyter notebook
pip install "keras"
conda install pillow
conda install scipy
```
> Note the flag *-y* is optional to use

<br>
AC4908's avatar
AC4908 committed

```
jupyter notebook --notebook-dir='your working directory'
```
> again --notebook-dir='your working directory' is optional if you have configured it beforehand.

### Reopening the environment
After opening the anaconda prompt, you can follow these commands to navigate back to your environment.
#### List all created environments
```
conda info --envs
```

#### Opening commands
```
conda activate "env name"
jupyter notebook --notebook-dir='your working directory'
```
AC4908's avatar
AC4908 committed


Michiel_VE's avatar
Michiel_VE committed
#### Drawing images
To see what images are used you can use matplot to draw them and verify
AC4908's avatar
AC4908 committed

```
Michiel_VE's avatar
Michiel_VE committed
conda install matplotlib
AC4908's avatar
AC4908 committed
```

Michiel_VE's avatar
Michiel_VE committed
#### Flask
Displaying the stream into a webapp.

```
pip install Flask
```

AC4908's avatar
AC4908 committed