Free tier (30 GB disk space, 1 GB ram) -- just a test, free. This has my Jupyter server on it (passwd: 'tony')
Free tier (10 GB disk space, 1 GB ram) -- another test, free.
Seelviz Server (200 GB disk space, 52 GB RAM) -- 340 cents an hour, running under my Gmail, please shut down when not in use (don't wanna get charged!) This is on the GoogleCloud.
HTTP: 80: Any (0.0.0.0) SSH: 22: Any CustomTCP:0-100:Any
In [ ]:
# In terminal:
# Check updates
sudo apt-get update
# Get Git
sudo apt-get install git
# Get C (for making stuff)
sudo apt-get install build-essential
# Get NDreg dependencies:
sudo apt-get -y install cmake python-numpy libinsighttoolkit4-dev libfftw3-dev
# Get ITKSnap so ndreg works
itkVersion=4.10.0
itkMinorVersion=`echo ${itkVersion} | cut -d'.' -f 1,2`
mkdir itk;
cd itk
wget https://sourceforge.net/projects/itk/files/itk/${itkMinorVersion}/InsightToolkit-${itkVersion}.tar.gz
tar -vxzf InsightToolkit-${itkVersion}.tar.gz
mv InsightToolkit-${itkVersion} src/
mkdir bin; cd bin
cmake -G "Unix Makefiles" -DITK_USE_SYSTEM_FFTW=OFF -DITK_USE_FFTWD=ON -DITK_USE_FFTWF=ON -DModule_ITKReview=ON ../src
make && sudo make install
# Go back to home directory
cd
# Git clone ndreg
git clone https://github.com/neurodata/ndreg.git
# Go to ndreg
cd ndreg
# Install ndreg
cmake .
make && sudo make install