Is there a way to output >= instead of == in requirements.txt?
See original GitHub issueIs there a way to output >= instead of == in requirements.txt?
pygsheets>=1.1.3
retrying>=1.3.3
Instead of
pygsheets==1.1.3
retrying==1.3.3
Thanks!
Issue Analytics
- State:
- Created 6 years ago
- Reactions:7
- Comments:8
Top Results From Across the Web
Is there any way to output requirements.txt automatically?
Try the following command: pip freeze > requirements.txt.
Read more >Why and How to make a Requirements.txt - Robert Boscacci
Nope. In short, we generate and share requirements.txt files to make it easier for other developers to install the correct versions of the...
Read more >The Python Requirements File and How to Create it
Use the pip install -r requirements.txt command to install all of the Python modules and packages listed in your requirements.txt file. This ...
Read more >print output suitable for requirements.txt on successful install ...
It would be really nice if pip printed a line suitable for a requirements.txt file after installing. I am forever typing: pip install...
Read more >How to Generate Requirements.txt for Your Python Project
A guide to generating Requirements.txt for Python project.
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
@philipperemy use
sed
:will replace all
==
with>=
:Or how to export without specific version number?