When I try to install packages with pipenv
, the progress bar doesn't show up. This is very important for me since I have a limited data connection and I need to know in advance the size of the packages I'm downloading.This is an example of what I'm getting in pipenv
.
pipenv install spacyInstalling spacy...[ =] Installing spacy...
This is what I get instead when installing packages with normal pip
.
pip install spacyCollecting spacy Downloading spacy-3.0.1-cp39-cp39-win_amd64.whl (11.4 MB) |████████████ | 4.3 MB 2.2 MB/s eta 0:00:04
Is there any way to show the progress bar with pipenv? Everyone else on things like tutorials can show the progress bar without additional code. Might it be that in new versions it's not a default setting showing progress bar?
I do have some kind of way of telling the size of the package, I just do the pip install
, check the size, and then immediately abort so that I can go for a pipenv
install.