From be09e95e4ff686a2b86823641cfa33c0b7e17134 Mon Sep 17 00:00:00 2001 From: Ashwith Rego Date: Sat, 30 Apr 2022 23:11:35 +0530 Subject: Added PyQt5 setup Added dnf command to install python3-qt5. Although eSim's script does install this package, since PyQt5 is a requirement for nghdl, it makes sense to add it here. --- Fedora/install-nghdl.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Fedora/install-nghdl.sh b/Fedora/install-nghdl.sh index 49f3971..a9d7c87 100755 --- a/Fedora/install-nghdl.sh +++ b/Fedora/install-nghdl.sh @@ -66,10 +66,10 @@ function installDependency # Specific dependency for nvidia graphic cards echo "Installing graphics dependency for Ngspice source build" - echo "Installing libxaw7........................................" + echo "Installing libXaw........................................" sudo dnf install -y libXaw - echo "Installing libxaw7-dev...................................." + echo "installing libXaw-dev...................................." sudo dnf install -y libXaw-devel echo "Installing dependencies for $verilator...................." @@ -88,6 +88,12 @@ function installDependency sudo dnf install make autoconf flex bison which -y sudo dnf groupinstall 'Development Tools' -y fi + + # Although PyQt5 is installed in the main eSim script, + # it is a dependency for nghdl so it makes sense to + # keep it here as well. + echo "Installing PyQt5......................................" + sudfo dnf install -y python3-qt5 } -- cgit