About 35,500,000 results
Open links in new tab
  1. What is the difference between 'py' and 'python' in the Windows ...

    Jun 17, 2018 · py is the Python launcher which is a utility that comes with Python installations on Windows. It gets installed into C:\Windows\ so it’s available without requiring PATH modifications.

  2. windows - Python - How do you run a .py file? - Stack Overflow

    Feb 29, 2012 · Check that python's bin folder is in your PATH, or you can do c:\python23\bin\python <filename.py>. Python is an interpretive language and so you need the interpretor to run your file, …

  3. 'py' works but not 'python' in command prompt for windows 10

    Sep 17, 2020 · In general, it's best to use the Windows Python Launcher, py.exe anyway, so this is no big deal. Just use py for launching consistently, and stuff will just work. Similarly, if py.exe was …

  4. python - What is setup.py? - Stack Overflow

    Sep 24, 2009 · setup.py is a Python script that is usually shipped with libraries or programs, written in that language. It's purpose is the correct installation of the software.

  5. How to run a .py file in windows command line? - Stack Overflow

    Nov 5, 2013 · I don't have permission to save .py file in python directory (C:\program files\python33) so I saved it to C:\Pyscripts. Also python was already been added to the PATH and I can run a simple …

  6. python - ERROR: Failed building wheel for pyarrow (Failed to build ...

    Oct 9, 2024 · I am installing pyarrow on python 3.13: pip install pyarrow this is what I am getting: C:\Users\dev\AppData\Local\Programs\Python\Python313>py -3.13 -m pip install pyarrow Collecting …

  7. How to build multiple .py files into a single executable file using ...

    Jul 21, 2018 · I have made a small PyQt application containing 5-6 .py files. Now I want to build and compile them into a single main file, meaning it has to operate from one main window exe. My .py …

  8. How do I convert a IPython Notebook into a Python file via …

    Jun 13, 2013 · I understand this is an old thread. I have faced the same issue and wanted to convert the .pynb file to .py file via command line. My search took me to ipynb-py-convert By following below …

  9. How to configure __main__.py, __init__.py, and setup.py for a basic ...

    Package/ setup.py src/ __init__.py __main__.py code.py I want to be able to run the code in a lot of different ways. pip install Package and then python and then from Package import * python -m …

  10. python - What is __init__.py for? - Stack Overflow

    Jan 15, 2009 · The __init__.py file can contain the same Python code that any other module can contain, and Python will add some additional attributes to the module when it is imported. But just …