About 311,000 results
Open links in new tab
  1. How do I install and run a python script? - Stack Overflow

    Jun 18, 2022 · In Python, you don't have to install arbitrary scripts (such as your referenced git repo). Couple of general pointers: Python is an interpreter based language, installed on your …

  2. Python - install script to system - Stack Overflow

    May 17, 2009 · python setup.py install --help and search for --install-scripts parameter and friends.

  3. How to install python modules in blender - Stack Overflow

    Jun 22, 2012 · Install the Package Using Blender's Python: Use Blender's Python executable to install the cryptography package (or any other required package). Replace path/to/python with …

  4. python - How do I install pip on Windows? - Stack Overflow

    pip is a replacement for easy_install. But should I install pip using easy_install on Windows? Is there a better way?

  5. python - How do I install a script to run anywhere from the …

    Aug 6, 2011 · If I have a basic Python script, with it's hashbang and what-not in place, so that from the terminal on Linux I can run /path/to/file/MyScript [args] without executing through the …

  6. How can I Install a Python module with Pip programmatically …

    530 I need to install a package from PyPI straight within my script. Is there maybe some module or distutils (distribute, pip, etc.) feature which allows me to just execute something like …

  7. How to use setuptools to install a python script for windows …

    Feb 23, 2016 · python setup.py install which would also work directly after installing through pip But when I try to use the same setup.py on windows, it is unable to recognize the command …

  8. python - setup.py and adding file to /bin/ - Stack Overflow

    Dec 27, 2024 · If you're willing to build and install the entire python package, this is how I would go about it: Edit the setup () function in setup.py to contain a parameter named scripts and set …

  9. use "pip install/uninstall" inside a python script

    Feb 14, 2015 · how, inside a python script can I install packages using pip? I don't use the os.system, I want to import pip and use it.

  10. Deriving path of Python Scripts folder on Windows

    Mar 5, 2025 · I installed Python 3.13 on Windows 11 with winget install python3 --scope machine` Then I installed pip with python -m ensurepip This puts pip in …