226

Today when I tried to run a simple code on Sublime Text 3, the following message appeared:

Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640

And when I type Python in CMD, it opens the Windows Store for me to download Python 3.7. This problem started today for no good reason, I didn't change or downloaded anything about Python and already tried reinstalling Python, and the Path is correct.

Lee_Dailey
  • 7,109
  • 2
  • 20
  • 25
João Vitor Degrandi
  • 2,427
  • 2
  • 6
  • 7
  • 36
    What if you type py from the command line instead of python? – ChipJust Nov 07 '19 at 19:44
  • 6
    How about [this solution](https://superuser.com/a/1461471/1061122)? – fabda01 Nov 27 '19 at 00:55
  • I also think, it could be a duplicate to the question referenced by @yellow (it is linked to a specific answer) – Cadoiz Jul 12 '20 at 09:35
  • @ChipJust why do I have to type py instead of python all of a sudden? – Cagri Jun 04 '21 at 19:07
  • @Cagri [This question](https://stackoverflow.com/questions/50896496/what-is-the-difference-between-py-and-python-in-the-terminal) has some good information about it, but the short answer is I don't know exactly. It depends on key bindings in your registry on Windows. The Python installer has been putting the py wrapper there instead of python.exe for a while, which is nice because it honors [shebang](https://stackoverflow.com/questions/tagged/shebang). – ChipJust Jun 05 '21 at 22:58
  • how do I disable MS Store from opening, and just print the standard `'python' is not recognized as an internal or external command, operable program or batch file.` – nmz787 Apr 12 '22 at 15:57

11 Answers11

421

Use the Windows search bar to find "Manage app execution aliases". There should be two aliases for python, unselect them, this will allow the usual python aliases "python" and "python3". See image below.

enter image description here

I think we have this problem when installing python because in a new Windows installation the aliases are in the ON position as in image below. When turned on, Windows puts a empty or fake file named python.exe and python3.exe in the directory named %USERPROFILE%\AppData\Local\Microsoft\WindowsApps. This is the alias.

enter image description here

Then Microsoft put that directory at the top of the list in the "Path" environment variables.

enter image description here

When you enter "python" in cmd, it searches the directories listed in your "Path" environment variables page from top to bottom. So if you installed Python after a new Windows 10 install then get redirected to the Windows Store it's because there are two python.exe's, the alias in the App Execution Alias page, and the real one wherever you installed Python but cmd finds the App execution alias python.exe first because that directory is at the top of the Path.

I think the easiest solution is to just check the python.exe and python3.exe to OFF as I suggested before, which deletes the fake exe's. Based on this Microsoft Devblog https://devblogs.microsoft.com/python/python-in-the-windows-10-may-2019-update/ they stated they created this system partially for new python users specifically kids learning python in school that had trouble installing it. Creating this alias was to helps kids just starting python install it and focus on learning to code. I think Windows probably deletes those aliases if you install Python from the Windows App Store. What we are noticing is that they do not get deleted if you manually install from another source.

(Also the empty/fake python.exe is not really empty it says 0 KB in the screenshot but entering "start ms-windows-store:" in cmd opens the Windows App Store so it probably just has a line with that and a way to direct it to Python page.)

Finally, as Chipjust suggested you can create a new alias for python using something like DOSKEY as explained in this article for example: https://winaero.com/how-to-set-aliases-for-the-command-prompt-in-windows/

betafractal
  • 4,346
  • 1
  • 10
  • 11
  • 2
    I had the same problem. "App Installer" were both off. I had to switch them on and off again to stop the problem. – imix Sep 26 '20 at 23:09
  • 5
    This answer provides only workarounds. The root cause is that there is "MS made" `python.exe` in a folder listed in the PATH variable. This folder is `%USERPROFILE%\AppData\Local\Microsoft\WindowsApps`. Just make sure your python installation path is listed in the PATH **above** the `WindowsApps`, that's all. This is covered in the user aattk's answer below. – np8 Oct 26 '20 at 14:58
  • 25
    This was ridiculous that I had to go do this. Why can't Microsoft just leave me alone. I installed Python into a local directory by unzipping it and the command should just work. Just stop! – jamescampbell Dec 15 '20 at 16:09
  • 1
    I don't get why is this beneficial, could you elaborate on than? – carlo Feb 10 '21 at 09:20
  • 1
    Yeah I fail to see what's really cool about annoyingly messing with my scripts on various installs of windows too. Consistency goes a long way – Dmitri DB Mar 15 '21 at 14:41
  • @carlo I tried to make clear why this is beneficial which is mostly for new users, there is more detail in the link I provided as well. Thank you for the constructive feedback. – betafractal Mar 21 '21 at 05:53
  • woke up this morning to find this problem. Suspect windows updated overnight, curr ver 21H1 Build 19043.1165 When I deselected the entries for python and pip, the links in this directory were deleted. (yes I had multiple entries, possibly due to previous installs, uninstalls, upgrades of windows python app) C:\Users\bmt\AppData\Local\Microsoft\WindowsApps then attempting python would return this message. "'python' is not recognized as an internal or external command, operable program or batch file." selecting python again, resulted in cmd > python working again. (similarly for pip) – CodingMatters Aug 29 '21 at 21:30
  • 2
    I tried this and it didn't work immediately. The thing is, I got 2 accounts on my PC. It seems like the aliases from my other account were interfering. I already turned it off on my main account, but the app store was still popping up. When I turned the app aliases off on my other account it worked immediately. Just placing this here if anyone else has the same problem. – Jordy Sep 12 '21 at 16:15
  • Wtf, why would Windows ever create an alias for python to open windows store???? That shit makes no sense... My PATH variable had the path to python as its first entry, and still windows store opened when I hit python in cmd. – Sindre Bakke Øyen Nov 17 '21 at 15:58
  • I would really appreciate if someone will put actual menu location instead of what "search for". My windows is localized :( – Krypt Jun 05 '22 at 01:34
21

The main problem here is that the order in the path calls the windows from top to bottom, and that there is python.exe in %USERPROFILE%\AppData\Local\Microsoft\WindowsApps which is called first if there are no other python.exes in the PATH above that line.

To ensure that the correct python.exe is called, add the python installation folder (containing python.exe) to the PATH, above %USERPROFILE%\AppData\Local\Microsoft\WindowsApps

Here is an example:

  • To get to this location, click "Start" -> start typing "Env" -> Select "Edit the system environment variables" -> "Environment variables" -button -> Select the entry for "Path" in the upper list -> Click "Edit".

enter image description here

  • Python components should be at the top, as in step 5. If not, move up by pressing the button in step 6.
aattk
  • 339
  • 2
  • 6
  • 3
    Note that your animated GIF is too large to be uploaded to the Stack Overflow imgr account (limited to 2MB, this image is nearly 10MB). The current hosting option on your own site, is not guaranteed to be stable for the lifetime of your answer (which could easily be *decades*), please find a way to limit its size and then move it to imgr. – Martijn Pieters Apr 03 '20 at 16:49
  • 1
    This is actually the correct answer but the negative votes might be from the (previous) animated GIF + language of the printscreen + lack of explanation. – np8 Oct 26 '20 at 14:47
  • 2
    This is okay, but you'll have to redo it if you ever uninstall/reinstall python or install different versions or distributions of python. Not super difficult, but you could solve this once, permanently, by turning off the alias in Manage app execution aliases page. – betafractal Mar 21 '21 at 05:47
  • Moving python to the first line in the Path had no effect for me, the Windows Store continued to launch until I followed the execution aliases answer above. – ray Aug 28 '21 at 19:30
20

If python is already installed, then go to Apps & features from settings, select Python, then select modify. Again select modify and select Next:

select next

Then this window will appear:

select add python to environment variable

Select "add Python to environment variable" and click on the install button. Then again go to apps & features, click modify and then click repair. Now go to CMD and type python. Problem solved.

tripleee
  • 158,107
  • 27
  • 234
  • 292
Anupam kakati
  • 201
  • 2
  • 2
11

This is a powershell script that does the magic.

Remove-Item $env:USERPROFILE\AppData\Local\Microsoft\WindowsApps\python*.exe
CircleOnCircles
  • 2,202
  • 1
  • 18
  • 24
7

I had problems with this as well, where Windows didn't recognize Python or Anaconda in a double click or cmd (command) prompt.

  • Problem: unable to import libraries in "python" cmd in windows. Instead the windows "python" cmd took users somewhere they don't want to go.
  • Problem Cause: In Windows "Environmental Variables", Windows adds a python.exe and python3.exe (I don't know where these link to) in the "%USERPROFILE%\AppData\Local\Microsoft\WindowsApps" directory.

Solution: I tried deleting the python*.exe files in the WindowsApp directory, but windows wouldn't allow it, so I opened a command prompt in the "%USERPROFILE%\AppData\Local\Microsoft\WindowsApps" directory, typed:

del python.exe
del python3.exe

Then I created a environment variables linking to the installed python link, in my case was C:\Anaconda3; C:\Anaconda3\Scripts and some others for good measure

Brad123
  • 742
  • 8
  • 10
  • 1
    I followed the aforementioned steps of the preferred answer and I still got the MS store popping up. Your solution saved my day. Thanks. By the way, you can use this command to get to that directory: cd "%USERPROFILE%\AppData\Local\Microsoft\WindowsApps – W. Elbashier Aug 08 '20 at 03:01
2

As a person who does Python development in Sublime Text, I know you said the python path was correct but when you install python make sure to tick the option to add Python to PATH.

I had the same issue back in the day til I did this.

pythoninstaller.png

Ben Rauzi
  • 443
  • 4
  • 11
2

You can manually add Python to windows path by doing this

  1. Start the Run box and enter sysdm.cpl

enter image description here

  1. Go to the Advanced tab and click the Environment Variables button

enter image description here

  1. Now you’ll need to locate the relevant Python paths

Here is how a Python application path looks like:

enter image description here

And this is how a Python Scripts path looks like: enter image description here

  1. Select the Path variable, press edit and add both paths (Python application and Python Scripts) enter image description here

4a. If it doesn't show, press new instead of edit and fill the New User Variable box enter image description here

This is how my Variable value looks like:

C:\Users\Ron\AppData\Local\Programs\Python\Python37-32;C:\Users\Ron\AppData\Local\Programs\Python\Python37-32\Scripts

enter image description here

That’s it! You just added Python to the Windows Path.

Source: Data To Fish

NiB
  • 651
  • 1
  • 7
  • 23
1

This is an additional note for anyone using pyenv-win: after turning off the app execution aliases, run pyenv rehash. You may also need to close/reopen your CMD or Powershell window.

Marc L.
  • 3,055
  • 1
  • 29
  • 38
1

So, I had the same problem. My answer was to add python to PATH not only for User variables, it was there, but also for System variables. And now everything works.

enter image description here

So, I've got the same problem in VENV. I solved it by typing >> python**.exe** But to add every time .exe a little bit nervous.

Also try to type python.exe in cmd.

625rk01
  • 31
  • 6
1

Because this is a common issue and this appears to be the canonical question, I want to try to give a complete overview of The Python 3.7 Windows Store Fiasco (TM).

Why is it possible for this to happen?

A convergence of two things: the previous introduction of the Python Launcher for Windows in 2011 (hereafter py), and a Windows 10 update in May 2019 that was apparently intended to make installing Python easier for Windows users.

Oops. Turns out that installation path isn't great; it bypasses the "lengthy" setup wizard... which contains some options that some users find very useful. It caused other issues, too. Not to mention that it just works in slightly non-standard ways, has limitations on file system access because it's a Store app, initially couldn't itself be launched by py....

Okay, but why do those factors result in the problem?

Since the introduction of the py, by default, Windows Python installers do not add the new Python install to the PATH. Why? Because the entire point of the py is that it uses its own logic to find a Python installation, based on some combination of command-line switches and possibly the source file's own shebang line. Now your source files can be associated with py instead of any particular python.exe, and you can get Linux-like behaviour when double-clicking a file. Meanwhile, by running py at the command line, you have easy access to whatever you need, and you don't have to think about which version of Python was installed most recently. So there's seemingly no good reason to put any of those Python installations on the PATH. It only risks confusing you when, for example, the most recently installed version isn't the most up-to-date one. Right?

In the update, Windows 10 put a "python.exe" into a Windows Apps-related folder, which is a wrapper app to open a Microsoft Store link. The idea is that it's on the PATH, but way near the end; so if you have an installed Python, it gets used, and otherwise the wrapper is invoked and helpfully prompts you to install Python - so that you can actually run that random, totally trusted .py file your friend sent you on Discord.

And it would work perfectly, if your installed Python were on the PATH.

Oops.

(But, you know, py had been introduced around 8 years prior. You'd think someone at Microsoft would have been aware of the potential issue. Maybe instead of a special shortcut link, they could have made an actual script that checks for the presence of C:\Windows\py.exe or something.)

So what are my options?

  • You can check the option to add new Python versions to the PATH when you install them, and deal with the fact that python at the command line means a specific one of them. If you need to change that, you can manually tweak your PATH variable.

  • You can just manually tweak the PATH variable after the fact. (or "Modify" a Python installation to fix it.) This is covered in several other answers.

  • Independently of that, you can disable the wrappers, as shown in the top answer. You should probably do this anyway; seeing python fail at the command line is less aggravating than dealing with a random GUI window popping up and offering to install something for you, especially when you know you have it already.

  • If you want to keep the PATH empty, consider using virtual environments for your projects. Whenever a virtual environment is active, the PATH is temporarily modified such that python means the Python installation of that environment. It's quite convenient, really.

  • You might be able to tell your IDEs to use py instead of a specific Python installation, and it might even be helpful to do so. I don't know. I don't use one.

Karl Knechtel
  • 56,349
  • 8
  • 83
  • 124
  • Reading further, it appears that Microsoft and the Python dev team consciously collaborated to get Python into the Store. Which makes it even more mystifying that nobody accounted for this interaction. – Karl Knechtel Jan 24 '22 at 08:05
-4

Adding a bit to the question. Even when I typed pip freeze, it wasn't showing anything. Here's what I did: There were multiple instances for python app in /AppData/Local/Microsoft/WindowApps.

Delete those and then it works.

Shizzen83
  • 3,039
  • 2
  • 8
  • 30
Manya
  • 1