Interactive Shell terminal (Pro) allows installing Python packages and tools through virtual creating environment. Please refer to the example below.
python3 -m venv .venv
source .venv/bin/activate
pip install django
python -c "import django; print(django.get_version())"
5.1.3
See the image example.