Skip to content

Instantly share code, notes, and snippets.

@tkuennen
Last active July 10, 2018 18:50
Show Gist options
  • Select an option

  • Save tkuennen/09634fc3798b3b5e4d376211761fa839 to your computer and use it in GitHub Desktop.

Select an option

Save tkuennen/09634fc3798b3b5e4d376211761fa839 to your computer and use it in GitHub Desktop.
Install CMCC Visualization Tool
#!/bin/sh
#
# https://github.com/ccmc/visualization
#
sudo yum -y install git
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh && bash Miniconda2-latest-Linux-x86_64.sh -b -p $HOME/miniconda2 -f && rm Miniconda2-latest-Linux-x86_64.sh
export PATH="$HOME/miniconda2/bin:$PATH"
echo ". $HOME/miniconda2/etc/profile.d/conda.sh" >> ~/.bashrc
source ~/.bashrc
git clone https://github.com/ccmc/visualization.git
cd visualization
conda create --name klive --file klive-centos.txt
conda activate klive
conda install pip
pip install cython
pip install dash==0.19.0 # The core dash backend
pip install dash-renderer==0.11.1 # The dash front-end
pip install dash-html-components==0.8.0 # HTML components
pip install dash-core-components==0.15.2 # Supercharged components
pip install plotly --upgrade # Latest Plotly graphing library
pip install flask_caching pyyaml pint pandas redis colorlover dash-table-experiments
pip install dash==0.21.1 # The core dash backend
pip install dash-renderer==0.13.0 # The dash front-end
pip install dash-html-components==0.11.0 # HTML components
pip install dash-core-components==0.23.0 # Supercharged components
pip install plotly --upgrade # Latest Plotly graphing library
python analysis_app.py -i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment