A rapid data exploration engine.
pip3 install forager_server
Now you can start up the Forager server by running:
forager-server
You can now access your Forager instance by typing http://localhost:4000 in your browser.
Forager runtime requires:
- Python >= 3.8
Forager build requires:
- npm >= 7.19.1
To build Forager for development:
git clone --recurse-submodules https://github.com/forager-research/forager-server.git
cd forager-server
pip3 install -e .
Then run with forager-server dev
.
To build Forager for release:
git clone --recurse-submodules https://github.com/forager-research/forager-server.git
cd forager-server
pip3 install build
python3 -m build
pip3 install dist/*.whl