Repository for code and notebooks for the NetworkX Tutorial
If you've obtained python through Anaconda, you should be set. In essence, we need Python 3 and the conda package manager.
- Anaconda
- Python 3
- Conda package manager
- Packages listed below
This is an intermediate level tutorial, so we expect prior knowledge of:
- Python types & data structures
- Installing python packages through
pip
orconda
- Data Science Packages:
- pandas
- numpy
- matplotlib
$ git clone https://github.com/rtidatascience/connected-nx-tutorial.git
$ cd connected-nx-tutorial
$ conda env create -f environment.yml
$ source activate connected
Reference: Conda Environments