mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-06 15:06:52 +08:00
13 lines
356 B
Bash
Executable File
13 lines
356 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 pkcon -y refresh
|
|
sudo pkcon -y install python-devel python-virtualenv
|
|
|
|
# install python3
|
|
sudo pkcon -y install libpython3_4m1_0 python3-base python3 python3-pip python3-devel python3-virtualenv
|