mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-19 11:36:12 +08:00
Use the same approach as in the other scripts. Change-Id: Ie48103e2c4a528a9d29318c4cabd6ead71dc5c2c Reviewed-by: Frederik Gladhorn <frederik.gladhorn@qt.io>
18 lines
395 B
Bash
Executable File
18 lines
395 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# provides: python development libraries
|
|
# version: provided by default Linux distribution repository
|
|
# needed to build pyside
|
|
|
|
set -ex
|
|
|
|
sudo yum install -y python-devel python-virtualenv
|
|
|
|
# install python3
|
|
sudo yum install -y python34-devel
|
|
|
|
# install pip3
|
|
wget https://bootstrap.pypa.io/get-pip.py
|
|
sudo python3 get-pip.py
|
|
sudo rm -f get-pip.py
|
|
sudo pip3 install virtualenv
|