Add possibility to install dependencies to target directory. pip -t flag analogue
See original GitHub issue- I have searched the issues of this repo and believe that this is not a duplicate.
- I have searched the documentation and believe that my question is not covered.
Feature Request
Add possibility to install dependencies to target directory. pip -t flag analogue.
The proposed command example is
poetry install -t ./vendor
Issue Analytics
- State:
- Created 4 years ago
- Reactions:115
- Comments:28 (4 by maintainers)
Top Results From Across the Web
Pip install to custom target directory and exclude specific ...
I want to exclude specific dependencies since they are already met from a different install path (e.g. an anaconda install). I don't have...
Read more >pip install - pip documentation v22.3.1
The install command has a --report option that will generate a JSON report of what pip has installed. In combination with the --dry-run...
Read more >How to Publish an Open-Source Python Package to PyPI
It comes with a pip-compile command that can create or update a complete list of dependencies. See the pip-tools documentation for more ...
Read more >Docker Compose release notes
Dependencies upgrade: bumped github.com/containerd/containerd from 1.6.2 to 1.6.6. Bug fixes and enhancements . Added links to container create request. Fixes ...
Read more >Installing jupyter_contrib_nbextensions
First, the Python pip package needs to be installed. Then, the notebook extensions themselves need to be copied to the Jupyter data directory....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Another vote for the AWS Lambda use case.
I’m interested in this feature to be able to download and build python packages as part of deploying to AWS Lambda. In order to deploy to Lambda you need to zip up your source code and dependencies and upload them to an S3 bucket. My build currently involves doing:
The
--without-hashes
is needed or I get an error when Ipip install
:It would be nice to be able to run something like:
This would have the advantage of verifying hashes, simplifying the build and removing the direct dependency on
pip
.