First off, I have scoured stack overflow for questions that are similar, and these ARE ones I have seen, but they do not solve the solution for me and I have made sure to follow their steps.
So, I downloaded this program to make an audio-reactive fractal, and in the readme it says the following:
## Installation
`'``bash
pip install -r requirements.txt
`'``
(I added in the two ' for formatting)
When I run pip install -r requirements.txt, I get the following error:
'pip' is not recognized as an internal or external command, operable program or batch file.
All of the steps in the comments to the above mentioned post did not solve this for me. Even running python commands like
python -m pip install [packagename]
did not help me, it did not recognize python as a command either, so I reasonably assumed I did not have python, so of course I installed it and had no success in changing anything.
Later I found out that doing py instead of python fixed it, but the pip commands did not work and my attempts at installing pip completely failed.
I've been frustrated by this multiple times and have probably spent over 5 hours over the course of weeks trying to fix it. I really just need some methods to solve this.