amavis ModuleNotFoundError: No module named ‘requests’

check to version python3 –version python –version Requests is not a built in module (does not come with the default python installation), so you will have to install it: OSX/Linux Python 2: sudo pip install requests Python 3: sudo pip3 install requests if you have pip installed (pip is the package installer for python and should come by default with […]