Last active
November 15, 2016 01:48
-
-
Save jnmclarty/b18585ea98e56b4415752c7251a2d7fd to your computer and use it in GitHub Desktop.
Create dev environment for CentOS/PyMQI
This file contains 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
cd ~ | |
wget http://repo.continuum.io/archive/Anaconda3-4.2.0=Linux-x86-64.sh | |
sudo yum install git | |
sudo yum groupinstall -y development | |
sudo yum install -y zlib-dev openssl-devel sqlite-devel bzip2-devel | |
sudo yum install python-devel | |
bash Anaconda3-4.2.0-Linux-x86_64.sh | |
source .bashrc | |
conda create -n py27pymqi python=2.7 | |
conda create -n py35pyqmi python=3.5 | |
git clone http://github.com/jnmclarty/pymqi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment