pipenv install --verbose is not verbose
See original GitHub issueDescribe your environment
- OS Type: macOS
- Python version: 2.7.14
- Pipenv version: 9.0.0
Expected result
pipenv install --verbose
to print the name of packages being built/installed as that happen, so that I can link a pip exception to a specific package.
At least, something more being printed when I pass in --verbose
.
Actual result
$ pipenv install
Pipfile.lock not found, creating…
Locking [dev-packages] dependencies…
Locking [packages] dependencies…
Traceback (most recent call last):
...
pip.exceptions.InstallationError: Command "python setup.py egg_info" failed with error code 1 in /var/folders/fq/1chpjqw56lv8zq8n14cbn4k40000gn/T/tmpqZz4fybuild/functools32/
$ pipenv install --verbose
Pipfile.lock not found, creating…
Locking [dev-packages] dependencies…
Locking [packages] dependencies…
Traceback (most recent call last):
...
pip.exceptions.InstallationError: Command "python setup.py egg_info" failed with error code 1 in /var/folders/fq/1chpjqw56lv8zq8n14cbn4k40000gn/T/tmpaHHhN0build/functools32/
On a related note, functools32 doesn’t really work with pipenv, but that’s their fault.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:7
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Pipenv CLI Reference — pipenv 2018.11.27.dev0 ドキュメント
Verbose mode. ... Uninstalls all packages not specified in Pipfile.lock. ... Displays currently-installed dependency graph information.
Read more >How to handle `pip install` inside a pipenv environment (not ...
First, let's clarify that the pipenv install command is just a wrapper for pip . If you install with --verbose , you'll see...
Read more >pipenv Documentation - Read the Docs
Pipenv will install version 1.2 and any minor update, but not 2.0. ... To see progress of install pass --verbose flag and pip...
Read more >pipenv install [package] - Fig.io
--clear, Clears caches (pipenv, pip, and pip-tools). -v, --verbose, Verbose mode. --pypi-mirror <mirror url>, If you would like to override the default PyPI ......
Read more >Pipenv CLI Reference - Python Packaging Authority
install ¶. Installs provided packages and adds them to Pipfile, or (if no packages are given), installs all packages from Pipfile. pipenv install...
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 FreeTop 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
Top GitHub Comments
@remram44 if you are having an issue with pipenv you are going to need to provide us with more information, including the full output, tracebacks, Pipfile, etc.
I’m going to close this issue for now unless there is a full output you can provide showing us what the problem is that you’re encountering. In any event this is almost certainly not a problem with the CLI flag, but an argument can be made for better exception handling.
It seems that passing
--verbose
multiple times actually results in more messages being printed. This is pretty weird and should probably be mentioned on the --help screen. How many do I need to see every message?