#Urgent help needed (im so dumb)
45 messages · Page 1 of 1 (latest)
What were you trying to do and what command caused that?
just running an install.bat file which is in a folder that my friend sent me
its meant to install all requirements
Do you have python installed and is it in your path variables?
yes i do have python installed
And what does the install.bat look like? It should be running python pip install -r requirements.txt
Sorry what do you mean what does it look like ?
What's inside the batch file?
You can tell from the error message that it's using a full path to the Python exe. So it's either in the path or it's hard coded in the bat file
(I'm leaning towards hard coded)
Yeah, concidering it's strings as well,
"C:\Program Files\python38\python.exe"
I'm pretty sure you having like, 4 different versions of Python installed does not help either
3.8, 3.10 and 3.11 at least
We can see it "found" 3.8. having parallel installs is fine, even supported by the installer.
Hmm
I'd make sure 3.8 is actually where the path variable says it is
And that the pip exe is where it says it is
I'd guess the path variable is outdated
Or a string/with quotes
I'm more weirded out by the fact it pulled Python3.8's python.exe into that as well
When the cmd is only pip
Well, they just didn't add the other versions to the path.
Or they added them after 3.8 in the path
So what should i do
Check where Python3.8 is actually installed, and check your PATH environmental variable
I found the problem 😂
You did?
?
They got rid of 3.8 lol
I still had 3.8 when i had the issue
Ah well rerun the Python installer for the version you want to use and make sure to check the box that says it'll add it to the path.