Top "Requirements.txt" questions

requirements.

How to customize a requirements.txt for multiple environments?

I have two branches, Development and Production. Each has dependencies, some of which are different. Development points to dependencies that …

python deployment heroku requirements.txt
Is there any way to show the dependency trees for pip packages?

I have a project with multiple package dependencies, the main requirements being listed in requirements.txt. When I call pip …

python pip requirements.txt
Check if my Python has all required packages

I have a requirements.txt file with a list of packages that are required for my virtual environment. Is it …

python pip requirements.txt
Delete unused packages from requirements file

Is there any easy way to delete no-more-using packages from requirements file? I wrote a bash script for this task …

python pip refactoring pycharm requirements.txt
Does Python requirements file have to specify version?

I have a requirements.txt file for a Python code base. The file has everything specified: pytz==2017.2 requests==2.18.4 six==1.11.0 I …

python requirements.txt
Managing contents of requirements.txt for a Python virtual environment

So I am creating a brand new Flask app from scratch. As all good developers do, my first step was …

python pip virtualenv requirements.txt
In requirements.txt, what does tilde equals (~=) mean?

In the requirements.txt for a Python library I am using, one of the requirements is specified like: mock-django~=0.6.10 What …

python requirements.txt
pip install requirement fails

I am facing an issue while trying to install the requirements for my django project. I am unable to figure …

python django pip requirements.txt
How to specify install order for python pip?

I'm working with fabric(0.9.4)+pip(0.8.2) and I need to install some python modules for multiple servers. All servers have old …

python pip virtualenv requirements.txt
Check if requirements are up to date

I'm using pip requirements files for keeping my dependency list. I also try to follow best practices for managing dependencies …

python package pip pypi requirements.txt