File: installation.txt

package info (click to toggle)
lazyarray 0.5.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 228 kB
  • sloc: python: 1,251; makefile: 109
file content (53 lines) | stat: -rw-r--r-- 1,204 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
============
Installation
============

Dependencies
============

    * Python >= 3.6
    * numpy_ >= 1.13
    * (optional) scipy_ >= 0.19

Installing from the Python Package Index
========================================

If you have pip_ installed::

    $ pip install lazyarray

This will automatically download and install the latest release (you may need
to have administrator privileges on the machine you are installing on).

To download and install manually, download:

    https://pypi.python.org/packages/source/l/lazyarray/lazyarray-0.5.2.tar.gz

Then::

    $ tar xzf lazyarray-0.5.2.tar.gz
    $ cd lazyarray-0.5.2
    $ python setup.py install

or::

    $ python3 setup.py install

depending on what your Python interpreter is named.


Installing from source
======================

To install the latest version of lazyarray from the Git repository::

    $ git clone https://github.com/NeuralEnsemble/lazyarray
    $ cd lazyarray
    $ python setup.py install


.. _`numpy`: http://numpy.scipy.org/
.. _`scipy`: http://scipy.org/
.. _`quantities`: http://pypi.python.org/pypi/quantities
.. _`pip`: http://pypi.python.org/pypi/pip
.. _`setuptools`: http://pypi.python.org/pypi/setuptools