Created
March 4, 2015 06:05
-
-
Save shl7cc/9bb237f0cac98c396be1 to your computer and use it in GitHub Desktop.
build and install pyodbc
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
#!/bin/bash | |
wget https://pyodbc.googlecode.com/files/pyodbc-3.0.7.zip | |
unzip pyodbc-3.0.7.zip | |
cd pyodbc-3.0.7 | |
sudo yum install -y python-devel unixODBC-devel | |
python setup.py build | |
sudo python setup.py install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment