This package also requires a copy of the rpc_zmq source code. Move into the src directory and clone a copy from github:
$ cd src $ git clone git@github.com:lzkelley/rpc_zmq.git
The NPM modules must be installed before usage:
$ cd test-cosmo $ npm install .
Run with:
$ npm start
Package python api layer using pyinstaller,
$ pyinstaller pyapi.py --distpath . -F; rm -r build/; rm pyapi.spec
Installed astropy with:
$ pip install git+https://github.com/astropy/astropy.git@v3.0rc1
- pyinstaller will build successfully with this, but it won't work with an error: astropy/astropy#7052 (comment)
- Also use the approach from: https://github.com/maartenbreddels/frozen_astropy/blob/8e40dd9318301d9dece9f1b438e432fb65a71e4b/frozen_astropy.py#L3-L29