Skip to content

Instantly share code, notes, and snippets.

View cbowers's full-sized avatar

Chris Bowers cbowers

  • Juniper Networks
  • Austin, TX
View GitHub Profile
@cbowers
cbowers / centos_python_env_setup
Last active March 1, 2021 13:56 — forked from donilan/centos_python_env_setup
Script for setting up Python virtual environment on Centos
#!/bin/bash
# Install stuff #
#################
# Install development tools and some misc. necessary packages
yum -y groupinstall "Development tools"
yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel mysql-devel libxml2-devel libxslt-devel unixODBC-devel sqlite sqlite-devel -y
# Alias shasum to == sha1sum (will prevent some people's scripts from breaking)