diff --git a/.travis.yml b/.travis.yml index 34eb21a2..b7f08e04 100644 --- a/.travis.yml +++ b/.travis.yml @@ -146,12 +146,13 @@ jobs: install: - | if [ ! -f $HOME/Qt/$QT_VERSION/gcc_64/bin/qmake ]; then \ - sudo apt install -yy p7zip python3 && \ + sudo apt-get update && \ + sudo apt install -yy p7zip python3 python3-pip && \ python3 -m pip install --upgrade pip && \ pip install -U aqtinstall requests py7zr && \ pip show aqtinstall && \ - aqt install-qt linux desktop $QT_VERSION clang_64 -m all -O $HOME/Qt && \ - aqt install-tool linux desktop tools_ifw -O $HOME/Qt ; \ + python3 -m aqt install-qt linux desktop $QT_VERSION clang_64 -m all -O $HOME/Qt && \ + python3 -m aqt install-tool linux desktop tools_ifw -O $HOME/Qt ; \ fi script: @@ -199,14 +200,15 @@ jobs: install: - | if [ ! -f $HOME/Qt/$QT_VERSION/android/bin/qmake ]; then \ - sudo apt install -yy p7zip python3 && \ + sudo apt-get update && \ + sudo apt install -yy p7zip python3 python3-pip && \ python3 -m pip install --upgrade pip && \ pip install -U aqtinstall requests py7zr && \ pip show aqtinstall && \ - aqt install-qt linux android $QT_VERSION android_armv7 -m all -O $HOME/Qt && \ - aqt install-qt linux android $QT_VERSION android_arm64_v8a -m all -O $HOME/Qt && \ - aqt install-qt linux android $QT_VERSION android_x86_64 -m all -O $HOME/Qt && \ - aqt install-qt linux android $QT_VERSION android_x86 -m all -O $HOME/Qt ; \ + python3 -m aqt install-qt linux android $QT_VERSION android_armv7 -m all -O $HOME/Qt && \ + python3 -m aqt install-qt linux android $QT_VERSION android_arm64_v8a -m all -O $HOME/Qt && \ + python3 -m aqt install-qt linux android $QT_VERSION android_x86_64 -m all -O $HOME/Qt && \ + python3 -m aqt install-qt linux android $QT_VERSION android_x86 -m all -O $HOME/Qt ; \ fi - | export TERM=dumb &&