-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated setup.py to use STIR 5.2 directly. No need for the custom ver…
…sion at the moment
- Loading branch information
Showing
2 changed files
with
18 additions
and
10 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
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 |
---|---|---|
@@ -1,15 +1,21 @@ | ||
#! /usr/bin/bash | ||
|
||
export PATH=$PWD/include/fruitcake/bin:$PATH | ||
export LD_LIBRARY_PATH=$PWD/include/fruitcake/book/lib:$LD_LIBRARY_PATH | ||
export PATH=$PWD/include/format_converters:$PATH | ||
|
||
sudo apt update -y && sudo apt upgrade -y -q | ||
|
||
sudo apt install unzip libboost-dev libboost-all-dev libpcre3 libpcre3-dev libncurses-dev cmake swig -y -q | ||
sudo apt install gcc g++ make cmake cmake-curses-gui libx11-dev libpng-dev tcsh -y -q | ||
|
||
sudo apt install python python-dev python-numpy ipython python-matplotlib mayavi2 -y -q | ||
|
||
sudo apt install mpi-default-dev mpi-default-bin libinsighttoolkit4-dev libtiff5-dev -y -q | ||
|
||
sudo apt install unzip libboost-dev libboost-all-dev libpcre3 libpcre3-dev libncurses-dev swig -y -q | ||
|
||
sudo apt install python3 python3-pip python3-ipython python3-numpy python3-scipy python3-nibabel python3-matplotlib python3-pandas -y -q | ||
|
||
pip3 install -U PyYAML nilearn nipype | ||
|
||
export PATH=$PWD/include/fruitcake/bin:$PATH | ||
export LD_LIBRARY_PATH=$PWD/include/fruitcake/book/lib:$LD_LIBRARY_PATH | ||
export PATH=$PWD/include/format_converters:$PATH | ||
|
||
python3 setup.py |