Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between python.exe, python3.exe, and python3.6.exe?

I just installed the 64 bit edition of ActivePython 3.6, and discovered that it contains three executable files that report identical version information and are the same size, but not entirely identical, peer fc.exe. I have

  • python.exe
  • python3.exe
  • python3.6.exe

Though I could probably use something along the lines of ProcMon to figure out whether python.exe is just a stub, but before I expend that much effort, I thought that I would inquire here.

Please be forewarned that I'll be posting this same question, under exactly the same title, on The Code Project, on the assumption that its audience doesn't completely overlap this one.

like image 504
David A. Gray Avatar asked Oct 16 '25 01:10

David A. Gray


1 Answers

These are all interchangeable, so no worries. They are needed for compatibility based on different system setups. ActivePython has a long history and builds on multiple platforms, so all precautions are taken.

like image 76
ToofHurtz Avatar answered Oct 18 '25 15:10

ToofHurtz