This Repo is all about experiments of Computer Networking A Top-Down Approach
不闻不若闻之, 闻之不若见之,见之不若知之,知之不若行之
Step0: Download WireShark
macOS: brew cask install wireshark
Windows: download in official website
Step1: Create a virtual environment
python3 -m venv venv
Step2: Activate this virtual environment
source venv/bin/activate
Step3: Install all the needed packages
pip install -r requirements.txt
Finally, if you want to quit virtual environment you can type deactivate
command in shell.