update,
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
# Copyright (C) 2023 Carnegie Mellon University and
|
||||
# Hong Kong University of Science and Technology
|
||||
|
||||
# This repository is adopted from the TCP in the
|
||||
# Wild course project from the Computer Networks
|
||||
# course taught at Carnegie Mellon University, and
|
||||
# is used for the Computer Networks (ELEC 3120)
|
||||
# course taught at Hong Kong University of Science
|
||||
# and Technology.
|
||||
|
||||
# No part of the project may be copied and/or
|
||||
# distributed without the express permission of
|
||||
# the course staff. Everyone is prohibited from
|
||||
# releasing their forks in any public places.
|
||||
|
||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||||
|
||||
sudo apt-get update
|
||||
|
||||
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential vim \
|
||||
emacs tree tmux git gdb valgrind python3-dev libffi-dev libssl-dev \
|
||||
clang-format iperf3 tshark iproute2 iputils-ping net-tools tcpdump cppcheck
|
||||
|
||||
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-pip \
|
||||
python-tk libpython3.10-dev libcairo2 libcairo2-dev pre-commit
|
||||
|
||||
pip3 install --upgrade pip
|
||||
pip3 install -r $SCRIPT_DIR/../requirements.txt
|
Reference in New Issue
Block a user