Darryl Dias

03 Feb 2021 in

To install Python 37, run the command below; if it is installed, you can skip this step.

<pre class="wp-block-code">```
pkg install python37

To install the Pip package installer, recommended by the PyPA, simply run the command below
```
pkg install py37-pip
```
```

The command above will install Pip for Python 3.7.

Now you can install packages by running `pip install` , for example:

```
```
pip install flask
```
```