This repository was archived by the owner on Feb 4, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export PATH="$IJ_PATH:$PATH"
18
18
mkdir -p $IJ_PATH /
19
19
cd $HOME /
20
20
wget --no-check-certificate https://downloads.imagej.net/fiji/latest/fiji-linux64.zip
21
- unzip fiji-linux64.zip
21
+ unzip fiji-linux64.zip > /dev/null 2>&1
22
22
23
23
24
24
# Install the package
Original file line number Diff line number Diff line change @@ -5,17 +5,17 @@ set -ex
5
5
# Install python
6
6
7
7
cd $HOME /
8
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
9
- bash miniconda.sh -b -p " $HOME /conda"
8
+ wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh > /dev/null 2>&1
9
+ bash miniconda.sh -b -p " $HOME /conda" > /dev/null 2>&1
10
10
export PATH=" $HOME /conda/bin:$PATH "
11
11
12
12
conda config --set always_yes yes --set changeps1 no
13
13
conda config --add channels conda-forge
14
- conda update --yes conda
15
- conda update --yes --all
14
+ conda update --yes conda > /dev/null 2>&1
15
+ conda update --yes --all > /dev/null 2>&1
16
16
conda info -a
17
17
18
- conda create --yes -n scijava python jupyter nbconvert
18
+ conda create --yes -n scijava python jupyter nbconvert > /dev/null 2>&1
19
19
20
20
source activate scijava
21
21
You can’t perform that action at this time.
0 commit comments