# Miniconda

Then download the 64-bit Linux installer from [Miniconda](https://docs.conda.io/en/latest/miniconda.html) or click [here](https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh)

Now run the Miniconda installer

```
bash Miniconda3-latest-Linux-x86_64.sh
```

Next, create a conda env for deepdrive

```
bash # to get conda in your shell
conda create -n dd python=3.7
conda activate dd
```
