QtWebEngineQuick of Qt6 on Linux #2978
-
|
I’m trying to setup a GitHub Action for building my project, and I need to install Qt. I have tried the brew formula and it works fine but I see that I'm setting up the dependencies, and installing Qt like this: - name: Dependencies
run: |
sudo apt-get -y install build-essential mercurial gfortran-9 gfortran-10 flex bison r-base cmake libarchive-dev zlibc libzstd-dev mesa-utils libglu1-mesa-dev freeglut3-dev mesa-common-dev libglew-dev libglfw3-dev libglm-dev libao-dev libmpg123-dev
brew install qtAm I missing something, or is this not just possible because of unavailability of WebEngineQuick dependencies, e.g., node.js and python2, on Ubuntu 20.04? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
|
Why not just install QT with apt? |
Beta Was this translation helpful? Give feedback.
-
|
Is Python 2 a mandatory requirement to build If so, then the answer is it isn't possible via In this case, you would need to find a 3rd-party option, which can be a modified version of Homebrew formula in Tap to use an externally maintained If Python 2 isn't a hard requirement, then further triage is needed as we do use |
Beta Was this translation helpful? Give feedback.
Is Python 2 a mandatory requirement to build
QtWebEngineQuick?If so, then the answer is it isn't possible via
homebrew-coreformula since we intentionally don't allow Python 2 as dependency for Linux bottles. It is temporarily allowed on macOS due to system Python 2, but it will no longer be possible once macOS 12.3 is released (Homebrew/homebrew-core#93940).In this case, you would need to find a 3rd-party option, which can be a modified version of Homebrew formula in Tap to use an externally maintained
python@2formula dependency. Or, see if anyone maintains an external repo via APT (though quick search didn't show anything).If Python 2 isn't a hard requirement, then further triage i…