WashU
WashU

Reputation: 29

Downloading python 3 on windows

I am currently trying to figure out how to set up using python 3 on my machine (Windows 10 pro 64-bit), but I keep getting stuck.

I used the Python 3.6 downloader to install python, but whenever I try to use Command Prompt it keeps saying "'python' is not recognized as an internal or external command, operable program or batch file" as if I have not yet installed it.

Unlike answers to previous questions, I have already added ";C:\Python36" to my Path environment variable, so what am I doing wrong?

I am relatively new to python, but know how to use it on my Mac, so please let me know if I'm just fundamentally confused about something.

Upvotes: 0

Views: 367

Answers (3)

WashU
WashU

Reputation: 29

Thanks everyone, I ended up uninstalling and then re-downloading python, and selecting the button that says "add to environment variables." Previously, I typed the addition to Path myself, so I thought it might make a difference if I included it in the installation process instead. Then, I completely restarted my computer rather than just Command Prompt itself. I'm not sure which of these two things did it, but it works now!

Upvotes: 0

user8116739
user8116739

Reputation:

Why are you using command prompt? I just use the python shell that comes with IDLE. It’s much simpler.

If you have to use command prompt for some reason, you’re problem is probably that you need to type in python3. Plain python is what you use for using Python 2 in the command prompt.

Upvotes: 0

Mohideen bin Mohammed
Mohideen bin Mohammed

Reputation: 20137

In environmental variables under path, add your python path... you said you already so please ensure is their comma separation between previous path..

And once added save environment variables tab. And close all command prompt then open it.

Then only command prompt will refresh with your python config..

Main thing, if you enter python which mean python 2.

For python3 type, python3 then it should work

Upvotes: 1

Related Questions