I'm running Python 3.7 on Windows 10 and I keep getting No module named 'tabulate'
error. I have deleted Python 2.
I've tried everything suggested in a similar question:
>> pip install tabulate
>> pip3 install tabulate
>> python -m pip install tabulate
All of the above respond with
>> Successfully installed tabulate-0.8.6
If I try to run it again, I get
>> Requirement already satisfied: tabulate in c:\program files\python37\lib\site-packages (0.8.6)
But I keep getting the same ModuleNotFoundError
when I try to import it. What can I try still?
UPD:
I have double-checked whether old versions of Python were uninstalled, and to my surprise EVERYTHING was still there: the folders, the files, the paths in the PATH... I'm afraid that was the reason of my problems, but I won't be able to test it until later.