blob: 1f941e4207c52c1aadbc01a9b285fe2f7d4df370 [file] [log] [blame]
#!/bin/bash
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# Make sure we don't fail to source a .bashrc file due to
# interactive mode checks.
PS1='$ '
# Install some useful/necessary dependencies to make future installs easier
sudo apt-get update
sudo apt-get install -y make
sudo apt-get install -y libblas-dev
sudo apt-get install -y liblapack-dev
sudo apt-get install -y gfortran
sudo apt-get install -y g++
sudo apt-get install -y build-essential
sudo apt-get install -y python-dev
sudo apt-get install -y ia32-libs --fix-missing
sudo apt-get install -y git
sudo apt-get install -y vim
sudo apt-get install -y curl
# GUI related installs
sudo apt-get install -y lightdm
# XFCE
#sudo apt-get install -y xfce4
#sudo apt-get install -y xdg-utils
#sudo apt-get install -y eog
# Ubuntu Unity
sudo apt-get install -y ubuntu-desktop
# Use the Easy-OCW Ubuntu install script to get everything
# else installed!
git clone http://git-wip-us.apache.org/repos/asf/climate.git
# Copy the Easy-OCW install script for Ubuntu
cp climate/easy-ocw/conda-install.sh .
# Copy the requirements files for conda and pip used by Easy-OCW
cp climate/easy-ocw/*.txt .
./conda-install.sh
# Set symlink for the UI frontend code
cd climate/ocw-ui/backend
ln -s ../frontend/app app
# Cleanup junk from the install
cd
rm *.sh
rm *.txt
# Auto-activate the OCW conda environment!
echo "source activate OCW" >> ~/.bashrc
mkdir /home/vagrant/Desktop
# These links will only work if we're using the Unity desktop.
# If you want to use the XFCE desktop you will need to change
# the references to 'nautilus' to whatever file browser you
# will be using.
cat >/home/vagrant/Desktop/climate.desktop <<CODELINK
[Desktop Entry]
Name=Climate-Code
Icon=utilities-terminal
Exec=nautilus /home/vagrant/climate
Terminal=false
Type=Application
CODELINK
cat >/home/vagrant/Desktop/ui.desktop <<UISTART
[Desktop Entry]
Name=Climate-UI
Icon=utilities-terminal
Exec=/home/vagrant/Desktop/.ui.sh
Terminal=true
Type=Application
UISTART
cat >/home/vagrant/Desktop/.ui.sh <<UIBOOTUP
#!/bin/bash
export PATH=/home/vagrant/anaconda/bin:$PATH
export PYTHONPATH=/home/vagrant/climate:/home/vagrant/climate/ocw
cd ~/climate/ocw-ui/backend && python run_webservices.py
UIBOOTUP
# It is possible that these commands will need to be rerun once
# the desktop environment has been updated. You will notice that
# they aren't recognized as shortcuts if you need to rerun these
# commands. If all is working properly, you should see terminal
# icons with the names listed above (Climate-Code or Climate-UI).
chmod +x ~/Desktop/climate.desktop
chmod +x ~/Desktop/.ui.sh
chmod +x ~/Desktop/ui.desktop
source ~/.bashrc