Skip to content

Commit

Permalink
Update install_fedora.sh
Browse files Browse the repository at this point in the history
cleaned up fedora install and included fix for ccbogel#794 (comment)
  • Loading branch information
ilippert authored May 14, 2023
1 parent c84b14d commit 16ab6dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions install_fedora.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ echo "QualCoder will be copied to the directory /usr/share/"
echo "These actions require owner (sudo) permission"
echo "The installer will also install dependencies"
sudo dnf install python3-devel python3-pdfminer.noarch python3-qt5 python3-pillow python3-openpyxl python3-pandas python3-plotly python3-pip python3-pyqt6 python3-pillow vlc python3-ply python3-six python3-chardet ffmpeg -y
# several python packages are not available by Fedora, so install using pip
# several python packages are not available by Fedora, so install using Python's package installer 'pip'
echo "Please wait ..."
python3 -m pip install Ebooklib pydub rispy SpeechRecognition pdfminer.six xmlschema
python3 -m pip install Ebooklib pydub rispy SpeechRecognition pdfminer.six xmlschema python-vlc
sudo cp -r qualcoder /usr/share/qualcoder
sudo cp qualcoder/GUI/qualcoder128.png /usr/share/icons/qualcoder128.png
sudo cp qualcoder/GUI/qualcoder.desktop /usr/share/applications/qualcoder.desktop
Expand All @@ -19,7 +19,7 @@ echo "To remove qualcoder from Linux run the following in the terminal:"
echo "sudo rm -R /usr/share/qualcoder"
echo "sudo rm /usr/share/icons/qualcoder128.png"
echo "sudo rm /usr/share/applications/qualcoder.desktop"
echo "also note that via dnf the subsequent packages were installed: python3-devel python3-pdfminer.noarch python3-qt5 python3-pillow python3-openpyxl python3-pandas pyhon3-plotly python3-pip python3-pyqt6 python3-pil vlc python3-ply python3-six python3-chardet ffmpeg"
echo "and via python's pip these packages were installed: Ebooklib pydub rispy SpeechRecognition pdfminer.six"
echo "also note that via dnf the subsequent packages were installed: python3-devel python3-pdfminer.noarch python3-qt5 python3-pillow python3-openpyxl python3-pandas python3-plotly python3-pip python3-pyqt6 python3-pillow vlc python3-ply python3-six python3-chardet ffmpeg"
echo "and via python's pip these packages were installed: Ebooklib pydub rispy SpeechRecognition pdfminer.six xmlschema python-vlc"
echo "Consider whether you still need these packages"

0 comments on commit 16ab6dc

Please sign in to comment.