About 7,400,000 results
Open links in new tab
  1. How to find a Python package's dependencies - Stack Overflow

    Apr 20, 2015 · How can you programmatically get a Python package's list of dependencies? The standard setup.py has these documented, but I can't find an easy way to access it from either Python …

  2. How do I install Python dev-dependencies using uv?

    Aug 22, 2024 · I'm trying out uv to manage my Python project's dependencies and virtualenv, but I can't see how to install all my dependencies for local development, including the development …

  3. List dependencies in Python - Stack Overflow

    What is the most efficient way to list all dependencies required to deploy a working project elsewhere (on a different OS, say)? Python 2.7, Windows dev environment, not using a virtualenv per pr...

  4. How do add python libraries to AWS Lambda? - Stack Overflow

    Feb 7, 2023 · To use any 3rd party library in lambda you can use a lambda layer. install the dependency using following command pip3 install <your_package> -t . zip the package zip -r your_pkg_layer.zip . …

  5. Installing Python Dependencies locally in project

    Dec 26, 2018 · 26 If you're looking to install dependencies in special (non-standard) local folder for a specific purpose (e.g. AWS Lambda), see this question: install python package at current directory. …

  6. How do I bundle a Python application including dependencies into a ...

    I need to package my Python application, its dependencies, and Python itself into a single MSI installer for distribution to users. The end result should desirably be: Python is installed in the

  7. python - Automatically create file 'requirements.txt' - Stack Overflow

    Sometimes I download the Python source code from GitHub and don't know how to install all the dependencies. If there isn't any requirements.txt file I have to create it by hand. Given the Python so...

  8. python - Upgrade package without upgrading dependencies using pip ...

    78 I'm using pip and virtualenv for my python application. I would like to upgrade to a new version of the application without touching the dependencies. When I use pip install -U, it tries to upgrade all the …

  9. Is there a way to list pip dependencies/requirements?

    Jun 21, 2012 · Without going through with the installation, I want to quickly see all the packages that pip install would install.

  10. python - Specify dependencies in pyproject.toml with install URL or ...

    Sep 19, 2023 · I like to have my package installable with pip install ... and to use the pyproject.toml standard. I can specify dependencies to install from git, with: dependencies = [ 'numpy&gt;=1.21', '