About 1,080,000 results
Open links in new tab
  1. How to execute Python scripts in Windows? - Stack Overflow

    The Python launcher for Windows is a utility which aids in the location and execution of different Python versions. It allows scripts (or the command-line) to indicate a preference for a specific …

  2. Scheduling a .py file on Task Scheduler in Windows 10

    Feb 15, 2024 · All I did was to instruct the scheduler to run python.exe with my script as an argument just as explained by this fellow below . This what I did Suppose the script you want …

  3. Can't run python on windows anymore - Stack Overflow

    Jun 6, 2017 · I've also had "This app can't run on your PC" windows 10 dialog box starting to appear after I tried to start x64 app from python script under x86 python. Uninstalled x86 …

  4. How do I install Python packages on Windows? - Stack Overflow

    Nov 24, 2014 · Newer versions of Python for Windows come with the pip package manager. pip is already installed if you're using Python 2 >=2.7.9 or Python 3 >=3.4. Use pip to install …

  5. Using subprocess to run Python script on Windows

    Just found sys.executable - the full path to the current Python executable, which can be used to run the script (instead of relying on the shbang, which obviously doesn't work on Windows) …

  6. How to constantly run Python script in the background on …

    Dec 1, 2019 · To start the program run the following command in CMD (in the folder where the file is located): pythonw YOUR-FILE.pyw. Now the process will run continuously in the …

  7. Run python script on Windows 10 - Stack Overflow

    Apr 22, 2019 · Launch Python (using its full path: check [Python 3.Docs]: Using Python on Windows for more details) on your module (e.g.): "C:\Program Files\Python37-64\python.exe" …

  8. windows 10 - 'Python not found' despite having been installed

    Feb 28, 2021 · How to add Python to Windows PATH. Finish the installation, and you should be good to go. Alternatively, you may manually add the paths into the Environment variables. …

  9. python - How to run script with elevated privilege on windows

    Jul 20, 2016 · I created a shortcut to the python executable (python.exe) and then modified the shortcut by adding my script's name after the call to python.exe. Next I checked "run as …

  10. How do I open Python IDLE (Shell WIndow) in WIndows 10?

    I am just starting to learn Python and I am using Windows 10. I downloaded and installed Python 3.4.3. But everytime I open Python from my Desktop or from C:\Python\python.exe it just …