separate script for installing ReText editor
This commit is contained in:
parent
b1b0e0da92
commit
17b5fab08d
1 changed files with 17 additions and 0 deletions
17
install_retext.sh
Executable file
17
install_retext.sh
Executable file
|
@ -0,0 +1,17 @@
|
|||
#!/bin/bash
|
||||
|
||||
#ReText
|
||||
aria2c http://sourceforge.net/projects/pyqt/files/sip/sip-4.16.2/sip-4.16.2.tar.gz -d /tmp
|
||||
tar -C /tmp -xf /tmp/sip-4.16.2.tar.gz
|
||||
cd /tmp/sip-4.16.2
|
||||
python3 configure.py
|
||||
make
|
||||
sudo make install
|
||||
aria2c http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-5.3.1/PyQt-gpl-5.3.1.tar.gz -d /tmp
|
||||
tar -C /tmp -xf /tmp/PyQt-gpl-5.3.1.tar.gz
|
||||
cd /tmp/PyQt-gpl-5.3.1
|
||||
python3 configure.py --qmake /usr/bin/qmake-qt5
|
||||
make -j8
|
||||
sudo make install
|
||||
|
||||
sudo pip-python3 install retext
|
Loading…
Reference in a new issue