Installation¶
The Installation guide is intended to assist the user with installing the library.
Install using pip¶
The topwave library requires Python 3.9 and above. It can soon be installed from
PyPI using pip.
$ python3 -m pip install topwave
Install from Source¶
To install from Source, you can git clone the repository with
$ git clone https://github.com/nheinsdorf/topwave
$ cd topwave
$ python3 -m pip install -r requirements.txt
$ python3 setup.py
Import the topwave package and verify that it was installed correctly
In [1]: import topwave as tp
In [2]: tp.__version__
Out[2]: '0.1.1'