RF-Swift/scripts/lab_software.sh

14 lines
357 B
Bash
Raw Normal View History

2024-05-18 07:23:30 -07:00
#!/bin/bash
function jupiter_soft_install() {
goodecho "[+] Installing Jupyter lab"
installfromnet "pip3 install jupyterlab"
goodecho "[+] Installing Jupyter lab"
2024-05-26 11:59:00 -07:00
installfromnet "pip3 install notebook"
2024-05-18 07:23:30 -07:00
}
2024-06-03 13:52:37 -07:00
function ml_and_dl_soft_install() {
goodecho "[+] Installing ML/DL tools"
installfromnet "pip3 install scikit-learn pandas seaborn Tensorflow"
}