I am trying to install TinyDB as I need to use it for a python program. I have tried following tutorials that suggest installing it via the command prompt. However, whenever I type 'python', it says ''python' is not recognized as an internal or external command, operable program or batch file.' I have tried adding 'C:\python37-32\' to the end of the PATH variable but it has made no difference. Does anyone have any suggestions?
Asked
Active
Viewed 360 times
1 Answers
0
- Check that
python.exe
is actually inC:\python37-32\
- Check if
PATH
is set correctly in yourcmd
, typeecho %PATH%
, if not, try rebooting your system
Once the directory where python.exe
is correctly added to PATH, you should be able to run
python -m pip install tinydb

FlyingTeller
- 17,638
- 3
- 38
- 53