-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't install ANTs using Neurodocker due to Dropbox link error 403 #635
Comments
any chance you can try building your recipe with an "apt" distro rather than a "yum" one. Installing ANTs from source is generally broken and installing binaries usually fails on fedora and centos distros: https://github.com/ReproNim/neurodocker/blob/test_docker_build/docs/README.md#ants The image of the status of the test run may take a while to run. |
This is the full recipe if that helps. It has package manager set to apt already? #!/usr/bin/env bash
set -e
export toolName='qsmxt'
export toolVersion='7.0.0'
if [ "$1" != "" ]; then
echo "Entering Debug mode"
export debug=$1
fi
source ../main_setup.sh
# Version history:
# --qsmxtbase------------------------------------------------------------------------------------------------
# - 1.0.0: Release for preprint including FS7, Minc, FSL
# - 1.1.0: Change to Fastsurfer and replace minc with Ants
# - 1.1.1: update Julia and move packages to depot_Path + changed python version to 3.7
# - 1.1.2: changed python version back to 3.6 with older Miniconda version + fixed versions
# - 1.1.3: Removed FSL, bidscoin, matplotlib, seaborn; added bet2
# - 1.1.3 (fix): Fixed dependency problems occurring with Nipype (see github.com/QSMxT/QSMxT/runs/7553737387)
# --qsmxt----------------------------------------------------------------------------------------------------
# - 1.1.12: Combined qsmxt and qsmxtbase containers
# - 1.1.13: https://github.com/QSMxT/QSMxT/releases/tag/v1.1.13
# - 1.1.13 (container update): Added RomeoApp to Julia for nextQSM testing; removed run_1_fixGEphaseFFTshift.py from DEPLOY_BINS
# - 1.1.13 (container update): Added NeXtQSM
# - 1.2.0: Major update; added QSM.jl; ROMEO unwrapping; Laplacian unwrapping; V-SHARP; RTS QSM; major pipeline refactor
# - 1.3.0: Major update; added premade pipelines, interactive editor, PDF, TV, and fixed networkx version incompatibility
# - 1.3.0 (container update): Fixed FastSurfer to v1.1.1 due to seeming slowness in v2
# - ...
# - 3.2.0: Added fix for scikit-sparse due to Cython bug https://github.com/scikit-sparse/scikit-sparse/releases/tag/v0.4.9
# - 6.3.2: Note that Julia v1.10 is not compatible with QSM.jl - created issue https://github.com/kamesy/QSM.jl/issues/8
neurodocker generate ${neurodocker_buildMode} \
--base-image ubuntu:18.04 \
--pkg-manager apt \
--env DEBIAN_FRONTEND=noninteractive \
--run="printf '#!/bin/bash\nls -la' > /usr/bin/ll" \
--run="chmod +x /usr/bin/ll" \
--install bzip2 ca-certificates wget unzip gcc cmake g++ dbus-x11 libgtk2.0-0 git graphviz wget \
zip libgl1 libglib2.0 libglu1-mesa libsm6 libxrender1 libxt6 libxcomposite1 libfreetype6 \
libasound2 libfontconfig1 libxkbcommon0 libxcursor1 libxi6 libxrandr2 libxtst6 qt5-default \
libqt5svg5-dev wget libqt5opengl5-dev libqt5opengl5 libqt5gui5 libqt5core5a libsuitesparse-dev \
libsqlite3-dev \
--env PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" \
--run="mkdir -p ${mountPointList}" \
--workdir="/opt/bet2" \
--run="git clone https://github.com/liangfu/bet2.git . \
&& cmake . && make \
&& ln -s /opt/bet2/bin/bet2 /bin/bet" \
--workdir="/opt" \
--env SUBJECTS_DIR="/tmp" \
--ants version=2.3.4 \
--dcm2niix method=source version=v1.0.20240202 \
--miniconda version=4.7.12.1 conda_install='python=3.8' \
--run="rm -rf /usr/bin/python3.8 \
&& ln -s /opt/miniconda-latest/bin/python /usr/bin/python3.8 \
&& pip install setuptools==69.5.1 \
&& pip install qsmxt==${toolVersion} \
&& pip install dunamai \
&& pip install git+https://github.com/astewartau/nii2dcm.git@qsm \
&& nextqsm --download_weights" \
--env PATH="\${PATH}:/opt/miniconda-latest/bin" \
--run="git clone --depth 1 --branch v1.1.1 https://github.com/Deep-MI/FastSurfer.git /opt/FastSurfer \
&& sed -i 's/cu113/cpu/g' /opt/FastSurfer/requirements.txt \
&& pip install -r /opt/FastSurfer/requirements.txt" \
--env FASTSURFER_HOME="/opt/FastSurfer" \
--env PATH="\${PATH}:/opt/FastSurfer" \
--copy test.sh /test.sh \
--workdir="/opt/bru2" \
--run="wget https://github.com/neurolabusc/Bru2Nii/releases/download/v1.0.20180303/Bru2_Linux.zip \
&& unzip Bru2_Linux.zip \
&& rm Bru2_Linux.zip" \
--env PATH="\${PATH}:/opt/bru2" \
--workdir="/opt" \
--run="wget https://julialang-s3.julialang.org/bin/linux/x64/1.9/julia-1.9.3-linux-x86_64.tar.gz \
&& tar zxvf julia-1.9.3-linux-x86_64.tar.gz \
&& rm -rf julia-1.9.3-linux-x86_64.tar.gz" \
--env PATH="\${PATH}:/opt/julia-1.9.3/bin" \
--workdir="/opt" \
--copy install_packages.jl "/opt" \
--env JULIA_DEPOT_PATH="/opt/julia_depot" \
--run="julia install_packages.jl" \
--env JULIA_DEPOT_PATH="~/.julia:/opt/julia_depot" \
--run="git clone --depth 1 --branch v0.5 https://github.com/astewartau/QSMxT-UI-2 QSMxT-UI" \
--run="wget https://nodejs.org/dist/v14.17.0/node-v14.17.0-linux-x64.tar.xz \
&& tar xf node-v14.17.0-linux-x64.tar.xz \
&& rm node-v14.17.0-linux-x64.tar.xz" \
--env PATH="\${PATH}:/opt/node-v14.17.0-linux-x64/bin" \
--env DEPLOY_PATH="/opt/ants-2.3.4/:/opt/FastSurfer:/opt/QSMxT-UI" \
--env DEPLOY_BINS="nipypecli:bet:dcm2niix:Bru2:Bru2Nii:tgv_qsm:julia:python3:python:pytest:predict_all.py:qsmxt:qsmxt-gui:dicom-sort:dicom-convert:nifti-convert" \
--env LC_ALL="C.UTF-8" \
--env LANG="C.UTF-8" \
--run="wget https://raw.githubusercontent.com/QSMxT/QSMxT/main/docs/container_readme.md -O /README.md" \
--run="sed -i \"s/toolVersion/${toolVersion}/g\" /README.md" \
> ${imageName}.${neurodocker_buildExt}
if [ "$1" != "" ]; then
./../main_build.sh
fi
# Explanation for Julia hack:
# --env JULIA_DEPOT_PATH="/opt/julia_depot" \
# --run="julia install_packages.jl" \
# --env JULIA_DEPOT_PATH="~/.julia:/opt/julia_depot" \
# The problem is that Julia packages install by default in the homedirectory
# in singularity this homedirectory does not exist later on
# so we have to set the Julia depot path to a path that's available in the image later
# but: Julia assumes that this path is writable :( because it stores precompiled outputs there
# solution is to to add a writable path before the unwritable path
# behaviour: julia writes precompiled stuff to ~/.julia and searches for packages in both, but can't find them in ~/.julia and then searches in /opt/
# if anyone has a better way of doing this, please let me know: @sbollmann_MRI (Twitter) |
thanks |
can reproduce with the most minimalist example: neurodocker generate docker\
--base-image ubuntu:18.04 \
--pkg-manager apt \
--ants version=2.3.4 > tmp So it seems like a new bug. Noted that it does work with a more recent ANTs (2.4.3) |
Thank you! I'll see if I can update |
Triggered a run of the tests workflows. Clearly a lot of older ANTs versions are now failing: You can see the combination of distro + ANTs version that are failing on the left column of this page. In case this helps you choose. |
many of those older ants binaries are in a dropbox that i owned. i'm not sure why the 403 error is being raised... dropbox doesn't report any incidents on its status page. however, i cannot log in to the dropbox right now. |
perhaps we can move them to zenodo or osf once access is restored, and update neurodocker. and more generally perhaps push static builds to zenodo or osf. |
preference for zenodo also some of the latest version of ANTs have their binaries on github so maybe we do not need to keep track of ALL their binaries |
Reported bug to repronim ReproNim/neurodocker#635 (comment)
Reported bug to repronim ReproNim/neurodocker#635 (comment)
This issue is stale because it has been open for 30 days with no activity. |
I tried to install ANTs v2.3.4 in my neurodocker recipe, and got this in my output. It points to the address https://dl.dropbox.com/s/gwf51ykkk5bifyj/ants-Linux-centos6_x86_64-v2.3.4.tar.gz which no longer exists.
The text was updated successfully, but these errors were encountered: