Install¶
Below we assume you have the default Python environment already configured on
your computer and you intend to install hyppo
inside of it. If you want to
create and work with Python virtual environments, please follow instructions
on venv and virtual
environments. We
also highly recommend conda. For instructions to install this, please look
at
conda.
First, make sure you have the latest version of pip
(the Python package
manager) installed. If you do not, refer to the Pip documentation and install pip
first.
Install from PyPi¶
Install the current release of hyppo
from the Terminal with pip
:
$ pip install hyppo
To upgrade to a newer release use the --upgrade
flag:
$ pip install --upgrade hyppo
If you do not have permission to install software systemwide, you can install
into your user directory using the --user
flag:
$ pip install --user hyppo
Install from Github¶
You can manually download hyppo
by cloning the git repo master version and
running the setup.py
file. That is, unzip the compressed package folder
and run the following from the top-level source directory using the Terminal:
$ git clone https://github.com/neurodata/hyppo
$ cd hyppo
$ python3 setup.py install
Or, alternatively, you can use pip
:
$ git clone https://github.com/neurodata/hyppo
$ cd hyppo
$ pip install .
Hardware requirements¶
hyppo
package requires only a standard computer with enough RAM to support
the in-memory operations.
OS Requirements¶
This package is supported for all major operating systems. The following versions of operating systems was tested on Travis CI:
- Linux: Ubuntu Xenial 16.04
- Windows: Windows Server, version 1803
Testing¶
hyppo
uses the Python pytest
testing package. If you don't already have
that package installed, follow the directions on the pytest homepage.