Skip to content

Instantly share code, notes, and snippets.

@victorfsf
Last active March 28, 2016 11:37
Show Gist options
  • Save victorfsf/b21faf0b1d94492563d2 to your computer and use it in GitHub Desktop.
Save victorfsf/b21faf0b1d94492563d2 to your computer and use it in GitHub Desktop.
Python Data Warehouse Collection
name: datascience
dependencies:
- python=2.7.11
- numpy
- llvmlite=0.9.0
- numba=0.24.0
- pip:
- ipdb==0.9.0
- ipython==4.1.2

Installing Numba

Numba is an Open Source NumPy-aware optimizing compiler for Python.

Numba documentation.

Dependencies:

LLVM

See this page to get the repositories for LLVM packages.

$ wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|sudo apt-key add -
$ sudo apt-get install clang-3.7 clang-3.7-doc libclang-common-3.7-dev libclang-3.7-dev libclang1-3.7 libclang1-3.7-dbg libllvm-3.7-ocaml-dev libllvm3.7 libllvm3.7-dbg lldb-3.7 llvm-3.7 llvm-3.7-dev llvm-3.7-doc llvm-3.7-examples llvm-3.7-runtime clang-modernize-3.7 clang-format-3.7 python-clang-3.7 lldb-3.7-dev libedit-dev

Miniconda

Download and install Miniconda here. Also, see this gist about managing conda environments.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment