pip3 install --user pyqt5
sudo apt-get install python3-pyqt5
sudo apt-get install pyqt5-dev-tools
sudo apt-get install qttools5-dev-tools
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
KERNEL_VERSION="3.13.0-29" | |
sudo apt-get update | |
sudo aptitude install -y linux-image-${KERNEL_VERSION}-generic \ | |
linux-headers-${KERNEL_VERSION} linux-image-extra-${KERNEL_VERSION}-generic | |
sudo sed -i "s/GRUB_DEFAULT=.*/GRUB_DEFAULT=\"Advanced options for Ubuntu>Ubuntu, with Linux ${KERNEL_VERSION}-generic\"/" /etc/default/grub | |
sudo update-grub |