question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. ItΒ collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

pipenv install progress bar doesn't take dev dependencies into account

See original GitHub issue
Als-MacBook-Pro # cat Pipfile
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true

[packages]

[dev-packages]

pytest = "*"
coverage = "*"
coveralls = "*"
pep8 = "*"
twine = "*"

Als-MacBook-Pro # pipenv install
No package provided, installing all dependencies.
Installing dependencies from Pipfile.lock…
  🐍   ❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒❒ 0/0 β€” 00:00:00
To activate this project's virtualenv, run the following:
 $ pipenv shell

Notice the 0/0 next to the progress bar.

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:9 (8 by maintainers)

github_iconTop GitHub Comments

2reactions
uranusjrcommented, Sep 21, 2017

Optimising for development is generally a bad idea because it’s too easy to miss things. You should allow as little by default as possible, and require explicit instruction to allow things on dev. Every development best practice guide will tell you this. Not every project is doing it right, even prominent ones (see MongoDB and MySQL), but I hope Pipenv will continue to do this the right way.

1reaction
kennethreitzcommented, Sep 21, 2017

we’re not changing it.

Read more comments on GitHub >

github_iconTop Results From Across the Web

pipenv not installing any package? - Stack Overflow
I uninstalled all the packages from the env using: pipenv uninstall --all and then did pipenv install to install all the packages from...
Read more >
Pipenv: promises a lot, delivers very little | Chris Warrick
Another thing I can do is pipenv install --dev ipython and get a handy shell for tinkering, but it will be marked as...
Read more >
Advanced Usage of Pipenv - Python Packaging Authority
This causes Pipenv to ignore changes to the Pipfile and (more importantly) prevents it from adding the current environment to Pipfile. lock ....
Read more >
Dependency Management With Python Poetry
Start a new Poetry project; Add Poetry to an existing project; Use the pyproject.toml file; Pin dependencies; Install dependencies with poetry.
Read more >
pipenv Changelog - PyUp.io
Prefer to use the lockfile sources if available during the install phase. ... Drop progress bar file due to recent performance optimization to...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found