================================= Day 2 - installation instructions ================================= (Instructions mostly copied from :doc:`quality`!) Use image "Ubuntu 14.04.3" Run:: sudo apt-get -y update && \ sudo apt-get -y install trimmomatic fastqc python-pip \ samtools zlib1g-dev ncurses-dev python-dev Install anaconda:: curl -O https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86_64.sh bash Anaconda3-4.2.0-Linux-x86_64.sh Then update your environment and install `khmer `__ and `sourmash `__:: source ~/.bashrc conda install -n root pip -y pip install https://github.com/dib-lab/khmer/archive/master.zip pip install https://github.com/dib-lab/sourmash/archive/2017-ucsc-metagenome.zip (See `the sourmash docs for this workshop `__ for some details on the sourmash install.) Running Jupyter Notebook ------------------------ Let's also run a Jupyter Notebook in your home directory. Configure it a teensy bit more securely, and also have it run in the background. Generate a config:: jupyter notebook --generate-config Add a password, have it not run a browser, and put it on port 8000 by default:: cat >> ~/.jupyter/jupyter_notebook_config.py <`__ .