Skip to content

Latest commit

 

History

History
77 lines (43 loc) · 1.46 KB

installation.rst

File metadata and controls

77 lines (43 loc) · 1.46 KB

Installation

Installation

This library is distributed on PyPi:
and can be installed with pip, as shown below:
$ pip install esntorch

This command will automatically install the dependencies listed in requirements.txt together with the library itself.

Please visit the [installation page](docs/src/installation.rst) for more details.

GitHub

The source code of the library is available on GitHub:
It can be cloned with the following command:
$ git clone https://github.com/PlaytikaResearch/EsnTorch.git

Once cloned, you can install the library by running one of the following commands from the root directory esntorch/:

$ pip install .                        # install library + dependencies
$ pip install -r requirements.txt      # install dependencies

More Info

To create the HTML documentation run the following commands:

$ cd docs
$ sphinx-apidoc -o source/ ../esntorch
$ make clean
$ make html
To make the library pip instalable, create and .whl file and deploy it on PyPi:
Make sure that twine is installed and run the following commands:
$ python setup.py sdist bdist_wheel
$ twine upload -r pypi dist/*

License

[MIT License.](LICENSE)