A graph DB that writes so fast, you'll get writer's cramp.
First, you need to make sure Python 3 is installed. Try this:
python3 --versionIf you see something like Python 3.5.2, great; move on to the next step. If you get python3: command not found, you need to install it. Run
sudo apt-get install python3and let it install. Next, you need python3-pip in order to get ANTLR4 working properly. Run
pip3 --versionand see if it works. If it does not, just run
sudo apt-get install python3-pipand let it do its thing. Now, try the following two lines to see if you have the Python module setuptools:
python3 -c "import setuptools"
echo $?If 0 is printed to the command-line, move on. If not, you need to install setuptools via
pip3 install setuptoolsFinally, we need ANTLR4 to work. Try this:
python3 -c "import antlr4"
echo $?If you get 0, you're done! If not, just run
pip3 install antlr4-python3-runtime
to finish setup. Now, you should be able to run graphospasm just by invoking the following command from the top-level directory:
python3 graphospasm.pyIf it doesn't work, try installing any missing modules via pip3. If that doesn't work, let us know via Github or otherwise!