Skip to content

Latest commit

 

History

History
63 lines (50 loc) · 2.13 KB

INSTALL.rst

File metadata and controls

63 lines (50 loc) · 2.13 KB

Installation

Quick Start

Neurokernel requires at least one NVIDIA GPU and CUDA.

Make sure you have pip installed (preferably in a virtualenv); once you do, install the following dependencies as follows:

pip install numpy
pip install cython
pip install numexpr
pip install tables

Run the following to install the remaining dependencies and the latest Neurokernel code:

git clone https://github.com/neurokernel/neurokernel.git
pip install -e git+./neurokernel#egg=neurokernel

Supported Platforms

Neurokernel has been tested and installed on Linux. It may run on other platforms too; if you encounter problems, submit a bug report on GitHub.

Installation Dependencies

In addition to Python 2.7 and NVIDIA CUDA, Neurokernel currently requires the following packages:

If you have all of the above requirements installed, you can install the downloaded code using:

cd neurokernel/
python setup.py install

or (if you want to tinker with the code without having to repeatedly reinstall it):

cd neurokernel/
python setup.py develop