Last active
July 10, 2018 18:50
-
-
Save tkuennen/09634fc3798b3b5e4d376211761fa839 to your computer and use it in GitHub Desktop.
Install CMCC Visualization Tool
This file contains hidden or 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
| #!/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