How to install
Install the package from binary version on Python Package Index (PyPI) repository.
pip install NNimaker
However, if you prefer to create the wheel of package on your laptop, you just need to download the source code from the origin repository. Then follow the path below to create the wheel on your system and then install it.
pip install setuptools wheel
python setup.py sdist bdist_wheel
pip install dist/NNimaker-VERSION-py3-none-any.whl
Then you can go back to Quick start and run section.
Note
Note that you may need use virtual environment to install the necessary packages. More information about virtual environment in Python can be found (here)