On 08/07/2017 11:15 AM, Ethan Furman wrote:
Light finally turned on. If requirements.txt has all my installed
requirements, that would include any dependencies
actually needed; so I specify --no-dependencies, then dependencies not listed
in the requirements.txt file will not be
installed.
A
On 08/04/2017 07:56 PM, Ethan Furman wrote:
On 08/04/2017 07:46 PM, Chris Angelico wrote:
On Sat, Aug 5, 2017 at 12:42 PM, Ethan Furman wrote:
pip freeze
will output a list of current packages and their requirements. I have one
package that falsely [1] lists another package as a requirem
Yes. There is. I have been in need of this for a while until I found out. 2
steps:
- pip install pip-chill
- pip-chill
The list will only have what you directly installed and will not list
itself, which is pretty neat. The only thing you'll notice is that it's not
alphabetically arranged.
Cheers.
On 08/04/2017 07:46 PM, Chris Angelico wrote:
On Sat, Aug 5, 2017 at 12:42 PM, Ethan Furman wrote:
pip freeze
will output a list of current packages and their requirements. I have one
package that falsely [1] lists another package as a requirement, which was
blocking installation as the f
On Sat, Aug 5, 2017 at 12:42 PM, Ethan Furman wrote:
> pip freeze
>
> will output a list of current packages and their requirements. I have one
> package that falsely [1] lists another package as a requirement, which was
> blocking installation as the false requirement wasn't available.
>
> Is