From 564a3db4ea073762c6762e0b63593e146fd0fabf Mon Sep 17 00:00:00 2001 From: b3nw Date: Fri, 6 Sep 2024 00:45:53 +0000 Subject: [PATCH] add Requirements and virtaulenv documentation --- README.md | 12 +++++++++++- Requirements.txt | 2 ++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 Requirements.txt diff --git a/README.md b/README.md index 7c5161c..18ff082 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ # nordvpn -Nord VPN Exit Node \ No newline at end of file +Nord VPN Exit Node Checker + + +# 1. Create the virtual environment (recommended) +python3 -m venv .venv + +# 2. Activate the virtual environment +source .venv/bin/activate + +# 3. Install packages from Requirements.txt +pip install -r Requirements.txt diff --git a/Requirements.txt b/Requirements.txt new file mode 100644 index 0000000..fb330d7 --- /dev/null +++ b/Requirements.txt @@ -0,0 +1,2 @@ +psycopg2-binary +requests \ No newline at end of file