This folder contains the sample Star Trace project in Python.
- Run Pilosa server: Starting Pilosa
- Initialize the schema: Create the Schema
- Import the sample data: Import Some Data
- Create a virtual env:
- Using Python 2.7:
virtualenv getting-started - Using Python 3.5:
python3 -m venv getting-started
- Using Python 2.7:
- Activate the virtual env:
- On Linux, MacOS, other UNIX:
source getting-started/bin/activate - On Windows:
getting-started\Scripts\activate
- On Linux, MacOS, other UNIX:
- Clone this repository, or download the ZIP archive and uncompress it.
- Make sure you are in the
getting-started/pythondirectory. - Install requirements:
pip install -r requirements.txt - Run the script with the dataset path and Pilosa server address:
python startrace.py .. :10101
