Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update install_fedora.sh #795

Merged
merged 1 commit into from
May 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"