From feac9783bcb20e7ac82161803d98d1b5f766b08e Mon Sep 17 00:00:00 2001 From: Justin Paul Date: Tue, 31 Oct 2023 08:45:27 -0400 Subject: [PATCH] Update requirements.txt When running in a new virtual environment portable.py requires requests module. adding requests module to the requirements.txt file will fix this for those running pip3 install -r requirements.txt (.env) (base) justin@Justins-MBP 13ft % python portable.py Traceback (most recent call last): File "/Users/justin/GitHub/13ft/portable.py", line 2, in import requests ModuleNotFoundError: No module named 'requests' --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 7e10602..30692b7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ flask +requests