-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Direct port to Qt6 (containers remain on qt5)
- Loading branch information
1 parent
3ceb0e3
commit 997a0c1
Showing
9 changed files
with
111 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ COPY --from=builder /usr/local/bin/dcm2niix /usr/local/bin/dcm2niix | |
# First install pyqt5 as Debian package to solve dependencies issues occurring when installed with pip | ||
# Then install the latest stable BIDScoin release from Python repository | ||
ENV PIP_NO_CACHE_DIR=off | ||
RUN apt-get update && apt-get -y --no-install-recommends install pigz curl python3-pyqt5 python3-pyqt5.qtx11extras && apt-get clean; \ | ||
RUN apt-get update && apt-get -y --no-install-recommends install pigz curl python3-pyqt5 python3-pyqt5.qtx11extras git && apt-get clean; \ | ||
pip install --upgrade pip; \ | ||
pip install bidscoin[all] | ||
pip install bidscoin[all]@git+https://github.com/Donders-Institute/[email protected]+qt5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,9 +52,9 @@ Stage: final | |
|
||
# Install the latest stable BIDScoin release from Python repository | ||
# NOTE: PyQt5 is installed as Debian package to solve dependencies issues occurring when installed with pip | ||
apt-get -y --no-install-recommends install python3-pyqt5 python3-pyqt5.qtx11extras && apt-get clean | ||
apt-get -y --no-install-recommends install python3-pyqt5 python3-pyqt5.qtx11extras git && apt-get clean | ||
pip install --upgrade pip | ||
pip install bidscoin[all] | ||
pip install bidscoin[all]@git+https://github.com/Donders-Institute/[email protected]+qt5 | ||
|
||
# Uncomment the line below if you get errors like: ImportError: libQt5Core.so.5: cannot open shared object file: No such file or directory | ||
# strip --remove-section=.note.ABI-tag /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,12 @@ If you do not have git (or any other version control system) installed you can ` | |
$ pip install ./bidscoin | ||
If you are installing BIDScoin on an older system and you are getting Qt6 errors, you can try to install a ``+qt5`` build, e.g. for version 4.1.0: | ||
|
||
.. code-block:: console | ||
$ pip install bidscoin[all]@git+https://github.com/Donders-Institute/[email protected]+qt5 | ||
Updating BIDScoin | ||
^^^^^^^^^^^^^^^^^ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters