book-generator-orgmode/install_dependances_ubuntu.sh
2025-08-30 18:57:27 +02:00

17 lines
No EOL
765 B
Bash
Executable file

#!/bin/bash
echo " =============================================================================================== "
echo " installation de dépendances pour faire ses propres ebook par tykayn de cipherbliss.com "
echo " =============================================================================================== "
sudo apt install -y calibre pandoc python3;
python -m venv venv
source venv/bin/activate
py -m ensurepip --upgrade
pip install matplotlib argparse pandas numpy wordcloud pyspellchecker language-tool-python;
echo " =============================================================================================== "
echo "OK c'est installé!"
echo " Générez votre premier livre: "
echo " "
echo " ./generate_book.sh mon_premier_livre"