Skip to content

Instantly share code, notes, and snippets.

@luzfcb
Last active September 21, 2015 01:10
Show Gist options
  • Save luzfcb/59cf1d3cf24bf801dd70 to your computer and use it in GitHub Desktop.
Save luzfcb/59cf1d3cf24bf801dd70 to your computer and use it in GitHub Desktop.

The steps below will get you up and running with a local development environment.

First, we must install a C/C++ compiler and some necessary libraries to compile some python modules that have extensions written in C.

The requirements.apt the file contains a list of non python libraries necessary to run this project. The script install_os_dependencies.sh help you to install these libraries.

Note

The names of the packages listed in the file requirements.apt were specifically tested on Ubuntu 14.04 64bit. Package names may change from version to version of Ubuntu.

To list the libraries contained in requirements.apt use the command:

$ ./install_os_dependencies.sh list

To install them, use the command:

$ sudo ./install_os_dependencies.sh install

The parameter install of install_os_dependencies.sh, NOT upgrade already installed library, even if upgrade are available.

To install and upgrade (if upgrade are available), use the upgrade parameter:

$ sudo ./install_os_dependencies.sh upgrade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment