diff --git a/CNAME b/CNAME deleted file mode 100644 index 5867ff4..0000000 --- a/CNAME +++ /dev/null @@ -1 +0,0 @@ -numba.pydata.org diff --git a/Makefile b/Makefile deleted file mode 100644 index 981bdb0..0000000 --- a/Makefile +++ /dev/null @@ -1,77 +0,0 @@ -# Makefile for Sphinx documentation -# - -# You can set these variables from the command line. -SPHINXOPTS = -SPHINXBUILD = sphinx-build -PAPER = -BUILDDIR = _build - -# Internal variables. -PAPEROPT_a4 = -D latex_paper_size=a4 -PAPEROPT_letter = -D latex_paper_size=letter -ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . -# the i18n builder cannot share the environment and doctrees with the others -I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . - -.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext - -help: - @echo "Please use \`make ' where is one of" - @echo " html to make standalone HTML files" - @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" - @echo " latexpdf to make LaTeX files and run them through pdflatex" - @echo " text to make text files" - @echo " man to make manual pages" - @echo " linkcheck to check all external links for integrity" - @echo " doctest to run all doctests embedded in the documentation (if enabled)" - -clean: - -rm -rf $(BUILDDIR)/* - -html: - $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." - - -latex: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo - @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." - @echo "Run \`make' in that directory to run these through (pdf)latex" \ - "(use \`make latexpdf' here to do that automatically)." - -latexpdf: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through pdflatex..." - $(MAKE) -C $(BUILDDIR)/latex all-pdf - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." - -text: - $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text - @echo - @echo "Build finished. The text files are in $(BUILDDIR)/text." - -man: - $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man - @echo - @echo "Build finished. The manual pages are in $(BUILDDIR)/man." - -linkcheck: - $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck - @echo - @echo "Link check complete; look for any errors in the above output " \ - "or in $(BUILDDIR)/linkcheck/output.txt." - -doctest: - $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest - @echo "Testing of doctests in the sources finished, look at the " \ - "results in $(BUILDDIR)/doctest/output.txt." - -# Borrowed from ipython.org -site: clean html - python _scripts/copy_trees.py - -gh-pages: site - python _scripts/gh-pages.py diff --git a/_config.yml b/_config.yml deleted file mode 100644 index b5ea2f7..0000000 --- a/_config.yml +++ /dev/null @@ -1 +0,0 @@ -auto: true diff --git a/_site/doc.html b/_site/doc.html new file mode 100644 index 0000000..a2c08f3 --- /dev/null +++ b/_site/doc.html @@ -0,0 +1,182 @@ + + + + + + + + + + Links to Documenation — numba + + + + + + + + + + + + +
+
+ + +
+ Home · +Download · +Documentation · +
+
+
+ +
+
+ + +
+
+
+
Loading
+ + + + +
+
+

Versions

+ +

Stable

+ 0.7 – February 2013
+ Download +
+ +

Development

+ pre-0.8
+ Github +
+ +
+
+ +
+
+ +
+ + + +
+

Links

+ + +
+ + +
+
+ +
+ +
+
+
+ + + + +
+
+
+
+
+
+ + + + + + \ No newline at end of file diff --git a/_site/download.html b/_site/download.html new file mode 100644 index 0000000..8d05f25 --- /dev/null +++ b/_site/download.html @@ -0,0 +1,179 @@ + + + + + + + + + + Downloads — numba + + + + + + + + + + + + +
+
+ + +
+ Home · +Download · +Documentation · +
+
+
+ +
+
+ + +
+
+
+
Loading
+ + + + +
+
+

Versions

+ +

Stable

+ 0.7 – February 2013
+ Download +
+ +

Development

+ pre-0.8
+ Github +
+ +
+
+ +
+
+ +
+ + + +
+

Links

+ + +
+ + +
+
+ +
+ +
+
+
+ +
+

Downloads

+
    +
  • Version 0.7 from PyPi
  • +
  • Version 0.6 from PyPi
  • +
  • Version 0.5 from PyPI
  • +
  • Version 0.3 from PyPI
  • +
  • Version 0.2 from PyPI
  • +
  • Version 0.1 from PyPI
  • +
+
+ + +
+
+
+
+
+
+ + + + + + \ No newline at end of file diff --git a/_site/index.html b/_site/index.html new file mode 100644 index 0000000..9bb95df --- /dev/null +++ b/_site/index.html @@ -0,0 +1,213 @@ + + + + + + + + + + Example — numba + + + + + + + + + + + + +
+
+ + +
+ Home · +Download · +Documentation · +
+
+
+ +
+
+ + +
+
+
+
Loading
+ + + + +
+
+

Versions

+ +

Stable

+ 0.7 – February 2013
+ Download +
+ +

Development

+ pre-0.8
+ Github +
+ +
+
+ +
+
+ +
+ + + +
+

Links

+ + +
+ + +
+
+ +
+ +
+
+
+ +

numba is a NumPy aware dynamic compiler for Python. It creates LLVM bit-code from Python syntax and then creates a wrapper around that bitcode to call from Python

+
+

Example

+
from numba import autojit
+
+@autojit
+def sum2d(arr):
+    M, N = arr.shape
+    result = 0.0
+    for i in range(M):
+        for j in range(N):
+            result += arr[i,j]
+    return result
+
+
+
+
+

QuickStart

+

The easiest way to get started with Numba is to either:

+
+
    +
  1. download the free Anaconda CE from here: http://continuum.io/downloads.html
  2. +
  3. Get a Wakari account and interact on-line: http://wakari.io
  4. +
+
+

If you want to build things yourself, then this can help get you started:

+
+
+
+
git clone https://github.com/numba/Meta.git
+cd meta
+python setup.py install
+git clone https://github.com/numba/numba.git
+cd numba
+python setup.py install
+
+
+

This project is maintained by Continuum Analytics

+
+
+
+ + +
+
+
+
+
+
+ + + + + + \ No newline at end of file diff --git a/_sources/_site/doc.txt b/_sources/_site/doc.txt new file mode 100644 index 0000000..7497704 --- /dev/null +++ b/_sources/_site/doc.txt @@ -0,0 +1,14 @@ + +Links to Documenation +================================== + +Releases: + +* `Version 0.7 `_ +* `Version 0.6 `_ +* `Version 0.5 `_ +* `Version 0.3 `_ + +Development: + +* `Development `_ diff --git a/_sources/_site/download.txt b/_sources/_site/download.txt new file mode 100644 index 0000000..c548f01 --- /dev/null +++ b/_sources/_site/download.txt @@ -0,0 +1,11 @@ + +Downloads +============= +* Version 0.7 from `PyPi `_ +* Version 0.6 from `PyPi `_ +* Version 0.5 from `PyPI `_ +* Version 0.3 from `PyPI `_ +* Version 0.2 from `PyPI `_ +* Version 0.1 from `PyPI `_ + + diff --git a/_sources/_site/index.txt b/_sources/_site/index.txt new file mode 100644 index 0000000..a4c3f1f --- /dev/null +++ b/_sources/_site/index.txt @@ -0,0 +1,48 @@ +numba is a NumPy aware dynamic compiler for Python. It creates LLVM bit-code from Python syntax and then creates a wrapper around that bitcode to call from Python + +Example +======= + +.. code-block:: python + + from numba import autojit + + @autojit + def sum2d(arr): + M, N = arr.shape + result = 0.0 + for i in range(M): + for j in range(N): + result += arr[i,j] + return result + +QuickStart +========== + +The easiest way to get started with Numba is to either: + + 1) download the free Anaconda CE from here: http://continuum.io/downloads.html + 2) Get a Wakari account and interact on-line: http://wakari.io + +If you want to build things yourself, then this can help get you started: + + * Get and install llvmpy at http://www.llvmpy.org + * Get and install Meta + * Get and install numba + +.. code-block:: bash + + git clone https://github.com/numba/Meta.git + cd meta + python setup.py install + git clone https://github.com/numba/numba.git + cd numba + python setup.py install + +This project is maintained by `Continuum Analytics `_ + +.. toctree:: + :hidden: + + doc + download diff --git a/_sources/index.txt b/_sources/index.txt index c7a023d..8922c6c 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -1,48 +1,104 @@ -numba is a NumPy aware dynamic compiler for Python. It creates LLVM bit-code from Python syntax and then creates a wrapper around that bitcode to call from Python +******************** +Numba +******************** + +Numba is an just-in-time specializing compiler which compiles +annotated Python and NumPy code to LLVM (through decorators). Its goal +is to seamlessly integrate with the Python scientific software stack +and produce optimized native code, as well as integrate with native foreign +languages. Example ======= .. code-block:: python - from numba import autojit + from numba import autojit + + @autojit + def sum2d(arr): + M, N = arr.shape + result = 0.0 + for i in range(M): + for j in range(N): + result += arr[i,j] + return result + +More examples: `examples `_. + +Documentation +============= + +* http://numba.pydata.org/doc.html + +Source and Downloads +==================== + +* Github: https://github.com/numba/numba + +.. code-block:: bash + + $ git clone git://github.com/numba/numba.git + +.. _install_frontpage: + +For tarballs see: + +.. toctree:: + :titlesonly: + :maxdepth: 2 + + download.rst - @autojit - def sum2d(arr): - M, N = arr.shape - result = 0.0 - for i in range(M): - for j in range(N): - result += arr[i,j] - return result +.. :ref:`Download Numba ` -QuickStart +Installing ========== -The easiest way to get started with Numba is to either: +The easiest way to install numba and get updates is by using the Anaconda +Distribution: http://continuum.io/downloads.html - 1) Download Anaconda (a free Python distribution) from here: http://continuum.io/downloads.html - 2) Get a Wakari account and interact on-line: http://wakari.io +If you have anaconda installed already: -If you want to build things yourself, then this can help get you started: +.. code-block:: bash + + $ conda install numba - * Get and install llvmpy at http://www.llvmpy.org - * Get and install Meta - * Get and install numba +or .. code-block:: bash - git clone https://github.com/numba/Meta.git - cd meta - python setup.py install - git clone https://github.com/numba/numba.git - cd numba - python setup.py install + $ conda update numba -This project is maintained by `Continuum Analytics `_ +For custom python environments see: .. toctree:: - :hidden: + :titlesonly: + :maxdepth: 1 + + install.rst + +Mailing Lists +============= + +Join the numba mailing list numba-users@continuum.io : + + * https://groups.google.com/a/continuum.io/d/forum/numba-users + +Some old archives are at: + + * http://librelist.com/browser/numba/ + +Website +======= + +See if our sponsor can help you (which can help this project): + + * http://www.continuum.io + * http://numba.pydata.org + +Continuous Integration +====================== + +* https://travis-ci.org/numba/numba - doc - download diff --git a/_sources/install.txt b/_sources/install.txt new file mode 100644 index 0000000..8f93292 --- /dev/null +++ b/_sources/install.txt @@ -0,0 +1,36 @@ +.. _custom: + +Custom Python Environments +========================== + +If you're not using anaconda, you will need LLVM with RTTI enabled: + +* Compile LLVM 3.2 + +.. code-block:: bash + + $ wget http://llvm.org/releases/3.2/llvm-3.2.src.tar.gz + $ tar zxvf llvm-3.2.src.tar.gz + $ ./configure --enable-optimized + $ # Be sure your compiler architecture is same as version of Python you will use + $ # e.g. -arch i386 or -arch x86_64. It might be best to be explicit about this. + $ make install + +* Installing Numba + +.. code-block:: bash + + $ git clone https://github.com/numba/numba.git + $ cd numba + $ pip install -r requirements.txt + $ python setup.py install + +or simply + +.. code-block:: bash + + $ pip install numba + +**NOTE:** Make sure you install *distribute* instead of setuptools. Using setuptools + may mean that source files do not get cythonized and may result in an + error during installation. diff --git a/_static/pygments.css b/_static/pygments.css index 1a14f2a..d79caa1 100644 --- a/_static/pygments.css +++ b/_static/pygments.css @@ -13,11 +13,11 @@ .highlight .gr { color: #FF0000 } /* Generic.Error */ .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ .highlight .gi { color: #00A000 } /* Generic.Inserted */ -.highlight .go { color: #303030 } /* Generic.Output */ +.highlight .go { color: #333333 } /* Generic.Output */ .highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ -.highlight .gt { color: #0040D0 } /* Generic.Traceback */ +.highlight .gt { color: #0044DD } /* Generic.Traceback */ .highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */ diff --git a/conf.py b/conf.py deleted file mode 100644 index 3b1a470..0000000 --- a/conf.py +++ /dev/null @@ -1,245 +0,0 @@ -# -*- coding: utf-8 -*- -# -# numba documentation build configuration file, created by -# sphinx-quickstart on Tue Aug 7 22:19:28 2012. -# -# This file is execfile()d with the current directory set to its containing dir. -# -# Note that not all possible configuration values are present in this -# autogenerated file. -# -# All configuration values have a default; values that are commented out -# serve to show the default. - -import sys, os - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -#sys.path.insert(0, os.path.abspath('.')) - -# -- General configuration ----------------------------------------------------- - -# If your documentation needs a minimal Sphinx version, state it here. -#needs_sphinx = '1.0' - -# Add any Sphinx extension module names here, as strings. They can be extensions -# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinx.ext.mathjax', 'sphinx.ext.ifconfig'] - -# Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] - -# The suffix of source filenames. -source_suffix = '.rst' - -# The encoding of source files. -#source_encoding = 'utf-8-sig' - -# The master toctree document. -master_doc = 'index' - -# General information about the project. -project = u'numba' -copyright = u'Continuum Analytics (2012)' - -# The version info for the project you're documenting, acts as replacement for -# |version| and |release|, also used in various other places throughout the -# built documents. -# -# The short X.Y version. -version = '0.7' -# The full version, including alpha/beta/rc tags. -release = '0.7.0' - -# The language for content autogenerated by Sphinx. Refer to documentation -# for a list of supported languages. -#language = None - -# There are two options for replacing |today|: either, you set today to some -# non-false value, then it is used: -#today = '' -# Else, today_fmt is used as the format for a strftime call. -#today_fmt = '%B %d, %Y' - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -exclude_patterns = ['_build'] - -# The reST default role (used for this markup: `text`) to use for all documents. -#default_role = None - -# If true, '()' will be appended to :func: etc. cross-reference text. -#add_function_parentheses = True - -# If true, the current module name will be prepended to all description -# unit titles (such as .. function::). -#add_module_names = True - -# If true, sectionauthor and moduleauthor directives will be shown in the -# output. They are ignored by default. -#show_authors = False - -# The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' - -# A list of ignored prefixes for module index sorting. -#modindex_common_prefix = [] - - -# -- Options for HTML output --------------------------------------------------- - -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -html_theme = 'agogo' -html_style = 'agogo.css' - -# Theme options are theme-specific and customize the look and feel of a theme -# further. For a list of options available for each theme, see the -# documentation. -#html_theme_options = {} - -# Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] - -# The name for this set of Sphinx documents. If None, it defaults to -# " v documentation". -html_title = u'numba' - -# A shorter title for the navigation bar. Default is the same as html_title. -#html_short_title = None - -# The name of an image file (relative to this directory) to place at the top -# of the sidebar. -html_logo = '_static/logo.png' - -# The name of an image file (within the static path) to use as favicon of the -# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 -# pixels large. -#html_favicon = None - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] - -# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, -# using the given strftime format. -#html_last_updated_fmt = '%b %d, %Y' - -# If true, SmartyPants will be used to convert quotes and dashes to -# typographically correct entities. -#html_use_smartypants = True - -# Custom sidebar templates, maps document names to template names. -html_sidebars = { - '**': ['gse.html', 'sidebar_versions.html', 'sidebar_links.html'], - 'searchresults': ['sidebar_versions.html', 'sidebar_links.html']} - -# Additional templates that should be rendered to pages, maps page names to -# template names. -#html_additional_pages = {} - -# If false, no module index is generated. -html_domain_indices = False - -# If false, no index is generated. -#html_use_index = False - -# If true, the index is split into individual pages for each letter. -#html_split_index = False - -# If true, links to the reST sources are added to the pages. -html_show_sourcelink = False - -# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -#html_show_sphinx = True - -# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. -#html_show_copyright = True - -# If true, an OpenSearch description file will be output, and all pages will -# contain a tag referring to it. The value of this option must be the -# base URL from which the finished HTML is served. -#html_use_opensearch = '' - -# This is the file name suffix for HTML files (e.g. ".xhtml"). -#html_file_suffix = None - -# Output file base name for HTML help builder. -htmlhelp_basename = 'numbadoc' - - -# -- Options for LaTeX output -------------------------------------------------- - -latex_elements = { -# The paper size ('letterpaper' or 'a4paper'). -#'papersize': 'letterpaper', - -# The font size ('10pt', '11pt' or '12pt'). -#'pointsize': '10pt', - -# Additional stuff for the LaTeX preamble. -#'preamble': '', -} - -# Grouping the document tree into LaTeX files. List of tuples -# (source start file, target name, title, author, documentclass [howto/manual]). -latex_documents = [ - ('toc', 'numba.tex', u'numba Documentation', - u'Mahadevan R (2008-2010), Continuum Analytics (2012)', 'manual'), -] - -# The name of an image file (relative to this directory) to place at the top of -# the title page. -#latex_logo = None - -# For "manual" documents, if this is true, then toplevel headings are parts, -# not chapters. -#latex_use_parts = False - -# If true, show page references after internal links. -#latex_show_pagerefs = False - -# If true, show URL addresses after external links. -#latex_show_urls = False - -# Documents to append as an appendix to all manuals. -#latex_appendices = [] - -# If false, no module index is generated. -#latex_domain_indices = True - - -# -- Options for manual page output -------------------------------------------- - -# One entry per manual page. List of tuples -# (source start file, name, description, authors, manual section). -man_pages = [ - ('toc', 'numba', u'numba Documentation', - [u'Continuum Analytics (2012)'], 1) -] - -# If true, show URL addresses after external links. -#man_show_urls = False - - -# -- Options for Texinfo output ------------------------------------------------ - -# Grouping the document tree into Texinfo files. List of tuples -# (source start file, target name, title, author, -# dir menu entry, description, category) -texinfo_documents = [ - ('toc', 'numba', u'numba Documentation', - u'Continuum Analytics (2012)', 'numba', 'One line description of project.', - 'Miscellaneous'), -] - -# Documents to append as an appendix to all manuals. -#texinfo_appendices = [] - -# If false, no module index is generated. -#texinfo_domain_indices = True - -# How to display URL addresses: 'footnote', 'no', or 'inline'. -#texinfo_show_urls = 'footnote' diff --git a/doc.html b/doc.html index fd89071..7d04382 100644 --- a/doc.html +++ b/doc.html @@ -16,7 +16,7 @@ - - - +
diff --git a/download.html b/download.html index 2fdaca0..95cb560 100644 --- a/download.html +++ b/download.html @@ -16,7 +16,7 @@ - + +
diff --git a/genindex.html b/genindex.html index 99ff833..061d85a 100644 --- a/genindex.html +++ b/genindex.html @@ -18,7 +18,7 @@ - +
@@ -147,9 +147,15 @@

Github

-

numba is a NumPy aware dynamic compiler for Python. It creates LLVM bit-code from Python syntax and then creates a wrapper around that bitcode to call from Python

+
+

Numba

+

Numba is an just-in-time specializing compiler which compiles +annotated Python and NumPy code to LLVM (through decorators). Its goal +is to seamlessly integrate with the Python scientific software stack +and produce optimized native code, as well as integrate with native foreign +languages.

-

Example

+

Example

from numba import autojit
 
 @autojit
@@ -162,34 +168,78 @@ 

Examplereturn result

+

More examples: examples.

-
-

QuickStart

-

The easiest way to get started with Numba is to either:

+
+

Documentation

+ +
+
+

Source and Downloads

+ +
$ git clone git://github.com/numba/numba.git
+
+
+

For tarballs see:

+
+ +
+
+
+

Installing

+

The easiest way to install numba and get updates is by using the Anaconda +Distribution: http://continuum.io/downloads.html

+

If you have anaconda installed already:

+
$ conda install numba
+
+
+

or

+
$ conda update numba
+
+
+

For custom python environments see:

+ +
+
+

Mailing Lists

+

Join the numba mailing list numba-users@continuum.io :

-
    -
  1. Download Anaconda (a free Python distribution) from here: http://continuum.io/downloads.html
  2. -
  3. Get a Wakari account and interact on-line: http://wakari.io
  4. -
+
-

If you want to build things yourself, then this can help get you started:

+

Some old archives are at:

-
git clone https://github.com/numba/Meta.git
-cd meta
-python setup.py install
-git clone https://github.com/numba/numba.git
-cd numba
-python setup.py install
-
-

This project is maintained by Continuum Analytics

-
+
+

Website

+

See if our sponsor can help you (which can help this project):

+
+
+
+
+

Continuous Integration

+
diff --git a/install.html b/install.html new file mode 100644 index 0000000..71eb7c4 --- /dev/null +++ b/install.html @@ -0,0 +1,202 @@ + + + + + + + + + + Custom Python Environments — numba + + + + + + + + + + + + + +
+
+ + +
+ Home · +Download · +Documentation · +
+
+
+ +
+
+ + +
+
+
+
Loading
+ + + + +
+
+

Versions

+ +

Stable

+ 0.7 – February 2013
+ Download +
+ +

Development

+ pre-0.8
+ Github +
+ +
+
+ +
+
+ +
+ + + +
+

Links

+ + +
+ + +
+
+ +
+ +
+
+
+ +
+

Custom Python Environments

+

If you’re not using anaconda, you will need LLVM with RTTI enabled:

+
    +
  • Compile LLVM 3.2
  • +
+
$ wget http://llvm.org/releases/3.2/llvm-3.2.src.tar.gz
+$ tar zxvf llvm-3.2.src.tar.gz
+$ ./configure --enable-optimized
+$ # Be sure your compiler architecture is same as version of Python you will use
+$ #  e.g. -arch i386 or -arch x86_64.  It might be best to be explicit about this.
+$ make install
+
+
+
    +
  • Installing Numba
  • +
+
$ git clone https://github.com/numba/numba.git
+$ cd numba
+$ pip install -r requirements.txt
+$ python setup.py install
+
+
+

or simply

+
$ pip install numba
+
+
+
+
NOTE: Make sure you install distribute instead of setuptools. Using setuptools
+
may mean that source files do not get cythonized and may result in an +error during installation.
+
+
+ + +
+
+
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/objects.inv b/objects.inv index dd6b3dc..010b208 100644 Binary files a/objects.inv and b/objects.inv differ diff --git a/search.html b/search.html index 0b83e75..43eda44 100644 --- a/search.html +++ b/search.html @@ -16,7 +16,7 @@