Open rvelarden opened 3 years ago
When you get an error it's often useful to try to understand it.
Traceback (most recent call last):
- Shows that it is a traceback.
File "client3.py", line 21, in
- In the file 'client3.py', in line 21
import urllib.request
- The line of code that has failed
ImportError: No module named request
- ImportError suggesting that there is an error during import of a module
Using this it is possible to enumerate that the likely step to debugging the issue is to see if you have the module installed.
Try running:
python3 -m pip install requests
When I type python client3.py to open my client terminal I get this: Traceback (most recent call last): File "client3.py", line 21, in
import urllib.request
ImportError: No module named request