A simple command-line game (game 2048) was written in python3 by my friend, and I cannot run it because I have the following error message:
File "c:/Python/2048.py", line 2, in <module>
from tabulate import tabulate
ModuleNotFoundError: No module named 'tabulate'
I am using windows and I installed tabulate module with this: pip3 install tabulate But the error is still there. What can I do?