#!/bin/sh packages="scikit-learn scipy" echo "Starting to install packages" for i in $packages; do python3 -m pip install "$i" done