Skip to content

Commit 10695c1

Browse files
authored
Merge pull request #161 from satra/fix/circle
fix: vtk tools build error
2 parents c5a770b + 487a7f1 commit 10695c1

File tree

4 files changed

+10
-53
lines changed

4 files changed

+10
-53
lines changed

.circleci/config.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ jobs:
2424
ln -sv /usr/lib/x86_64-linux-gnu /usr/lib64
2525
conda config --set show_channel_urls yes --set always_yes yes
2626
conda config --add channels conda-forge
27-
conda update conda conda-env
28-
conda env create --quiet
27+
conda create -n $ENV_NAME python=3.6 pip
2928
source activate $ENV_NAME
29+
conda install -y cmake mesalib vtk pandas matplotlib \
30+
colormath nipype tbb-devel nose
3031
conda info --envs
3132
python setup.py install
3233
mkdir $vtk_cpp_tools && cd $vtk_cpp_tools && cmake ../ && make

environment.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.

install/Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Generated by Neurodocker version 0.4.1
2-
# Timestamp: 2018-09-13 15:00:27 UTC
2+
# Timestamp: 2018-10-05 14:45:31 UTC
33
#
44
# Thank you for using Neurodocker. If you discover any issues
55
# or ways to improve this software, please submit an issue or
@@ -131,6 +131,8 @@ RUN export PATH="/opt/miniconda-latest/bin:$PATH" \
131131
matplotlib \
132132
colormath \
133133
nipype \
134+
tbb-devel \
135+
nose \
134136
&& sync && conda clean -tipsy && sync \
135137
&& bash -c "source activate mb \
136138
&& pip install --no-cache-dir \
@@ -242,7 +244,9 @@ RUN echo '{ \
242244
\n "pandas", \
243245
\n "matplotlib", \
244246
\n "colormath", \
245-
\n "nipype" \
247+
\n "nipype", \
248+
\n "tbb-devel", \
249+
\n "nose" \
246250
\n ], \
247251
\n "pip_install": [ \
248252
\n "datalad[full]", \

install/neurodocker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ docker run --rm kaczmarj/neurodocker:0.4.1 generate docker \
5555
--run 'ln -s /usr/lib/x86_64-linux-gnu /usr/lib64' \
5656
--miniconda \
5757
conda_install="python=3.6 pip jupyter cmake mesalib vtk pandas \
58-
matplotlib colormath nipype" \
58+
matplotlib colormath nipype tbb-devel nose" \
5959
pip_install="datalad[full] duecredit" \
6060
create_env="mb" \
6161
activate=true \

0 commit comments

Comments
 (0)