A collection of proof-of-concept notebooks and scripts for working with various technologies compatible with Python 3.x.
- Python 3.7.x: https://www.anaconda.com/download/
- Graphviz: http://www.graphviz.org/
- Install Python with Anaconda.
- Create and activate a new Anaconda 3.7 environment:
conda create --name poc python=3.7
- Clone the Github repo and cd into the directory.
- Install Graphviz with Homebrew:
brew update && brew install graphviz
- Install pygraphviz:
pip install pygraphviz --install-option="--include-path=/usr/local/Cellar/graphviz" --install-option="--library-path=/usr/local/Cellar/graphviz"
- Install the rest of the Python libraries:
pip install -r requirements.txt
- Run the script or notebook of your choice!