add requirements.txt or Pipfile
See original GitHub issuecurrently, the only option to install and manage the dependencies is by using the setup.py
. It’ll be easier to manage the dependencies by having a requirements.txt
or Pipfile
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Python HOW: Create requirements.txt Using pipenv
The Pipfile is used to track which dependencies your project needs in case you need to re-install them; Launches a subshell in the...
Read more >Advantages of Pipfile.lock Over requirements.txt
What is requirements.txt. The requirements.txt file is the way python developers have specified their dependencies for a long time.
Read more >requirements.txt vs Pipfile in heroku flask webapp deployment?
The Pipfile and Pipfile.lock that Pipenv uses are designed to replace requirements.txt . If you include all three files, Heroku will ignore the ......
Read more >Basic Usage of Pipenv - Read the Docs
Pipfiles contain information for the dependencies of the project, and supersedes the requirements.txt file used in most Python projects. You should add a ......
Read more >pipenv v/s requirements.txt. What is all about it? - LinkedIn
This virtualenv requires pip as a dependency management system. pip can install Python packages, Pipenv is recommended as it's a higher-level ...
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
@adtyanair Yes, I’ve had a thought over this. I feel it’s be better if we control the versions of dependencies right from
setup.py
.I’d really appreciate if you can update the
setup.py
file instead with current versions of the dependencies. I missed this out. Apologies for the late revert.Let me know what you think
I have created a pull request. But I was not able to do anything about the requirement ‘windows-curses’ because I don’t have a windows system with me. It would be nice if someone with a windows system could help.