Building the LibraryΒΆ
If you just want to get going just install pyralng using pip the dependancy
pyrlang-term will be installed automatically
pip3 install pyrlang
To install pyrlang from source you need to install term manually. Term is an external package that pyrlang uses to encode / decode Erlangs external term fomrat. Install it with:
pip3 install pyrlang-term
To install Pyrlang you checkout the project and install it:
git clone git@github.com:Pyrlang/Pyrlang.git
cd Pyrlang
pip install .
To build the docs you need to install Sphinx and some other pacakges you can do that with the requirements file:
pip install -r requirements.txt
Source for the documentation is in the docs-src/ directory. To generate
HTML, run make docs and the docs directory will be deleted and
recreated.