[SOLVED]Cloning Rarible: Part 1. Terminal Error w/ Python

I double checked my code did find some syntax errors and fixed them but im getting to this point and cant figure out what to do.

PS C:\Users\jonka\Simple Dapp> python -m http.server
python : The term ‘python’ is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling
of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1

  • python -m http.server
  •   + CategoryInfo          : ObjectNotFound: (python:String) [], CommandNotFoundException
      + FullyQualifiedErrorId : CommandNotFoundException
    
    

i checked the discord and this forum but couldnt find anything. maybe in my frustration im missing that someone already solved this.
The only difference from the video to my code i can think of would be for installing the SDK but i got this from the Moralis documentation

<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></script>
<script src="https://npmcdn.com/moralis@latest/dist/moralis.js"></script>

you need to install python in case that you don’t have it already installed, you can download it and install it from https://www.python.org/downloads/

Thank you so much. that seems like a “duh” thing i shouldve done.