Skip to content

Commit

Permalink
itk-snap 4.2.0 #35
Browse files Browse the repository at this point in the history
  • Loading branch information
mxochicale committed May 30, 2024
1 parent 17b21d4 commit 94173c8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
3 changes: 2 additions & 1 deletion itk-snap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ bash download-datasets.bash
## Usage
* `itksnap-4*`
```
cd $HOME/Downloads/itksnap/itksnap-4*/bin
cd $HOME/Downloads/itksnap/itksnap-4.0*/bin
cd $HOME/Downloads/itksnap/itksnap-4.2*/bin
./itksnap
```

Expand Down
14 changes: 11 additions & 3 deletions itk-snap/download-installation.bash
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,25 @@
# bash download_installation.bash

## LATEST VERSION
# https://sourceforge.net/projects/itk-snap/files/itk-snap/
# https://sourceforge.net/p/itk-snap/activity/

## LOGS
# itksnap-3.8.0-20190612-Linux-x86_64.tar.gz
# itksnap-4.0.1-20230320-Linux-gcc64.tar.gz
# itksnap-experimental-vtk9qt6-Linux-gcc64.tar.gz
FILENAME=itksnap-nightly-rel_4.0-Linux-gcc64.tar.gz #Length: 200943059 (192M) [application/x-gzip]
#FILENAME=itksnap-nightly-rel_4.0-Linux-gcc64.tar.gz #Length: 200943059 (192M) [application/x-gzip]

#VERSION=4.0.2
#FILENAME=itksnap-4.0.2-Linux-gcc64.tar.gz
VERSION=4.2.0
FILENAME=itksnap-4.2.0-20240422-Linux-gcc64.tar.gz #201.08M

cd ~/Downloads/
mkdir -p itksnap && cd itksnap
wget https://sourceforge.net/projects/itk-snap/files/itk-snap/Nightly/$FILENAME/download -O $FILENAME
tar -xvzf $FILENAME
#wget https://sourceforge.net/projects/itk-snap/files/itk-snap/Nightly/$FILENAME/download -O $FILENAME
wget https://sourceforge.net/projects/itk-snap/files/itk-snap/${VERSION}/${FILENAME} -O ${FILENAME}
tar -xvzf ${FILENAME}
rm ${FILENAME}


File renamed without changes.

0 comments on commit 94173c8

Please sign in to comment.