Skip to content

Instantly share code, notes, and snippets.

@jb2cool
Last active December 3, 2021 07:18
Show Gist options
  • Save jb2cool/dc68215033dd6f86a99941f4131f781d to your computer and use it in GitHub Desktop.
Save jb2cool/dc68215033dd6f86a99941f4131f781d to your computer and use it in GitHub Desktop.
Install QIIME via Python PIP on CentOS 7
#!/bin/bash
# Install essential build tools
sudo yum -y group install "Development Tools"
# Add EPEL repository
sudo yum -y install epel-release
# Install Python PIP and other required development libraries
sudo yum -y install python-devel python-pip libpng-devel freetype-devel lapack lapack-devel
# Install NumPy package
sudo pip install numpy
# Install QIIME itself
sudo pip install qiime
# Then test the QIIME install with the following command;
print_qiime_config.py -t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment