Yes, I heared you. pip is a great tool and has been around for quite a long time. But for 3 years or so, people (contributors) have been looking fo...
For further actions, you may consider blocking this person and/or reporting abuse
I wanted to have
pipenv shell
be the default integrated terminal in VSCode on Windows. Here are the settings I modified:This works when an integrated terminal is opened. However, there doesn't seem to be saved history within a
pipenv shell
session (there would normally be history saved for acmd
session).Is there a way to set up a command history so you can up-arrow for previous commands?
Hi there! On Unix you could try something like
SHELL=/usr/bin/zsh pipenv shell
. Sadly I don't know the Windows equivalent, but the idea is : force-set your shell when running the pipenv cmd.Cheers
Oops, my comment was incomplete. I meant it works in VSCode in Windows, but my outstanding issue is a lack of command history in the
pipenv shell
Loving pipenv (+ pyenv for multiple Python versions) so far.
The only thing that seems to be lacking is I can't find an easy way to know which packages have new available versions (like "bundle outdated" or "yarn outdated").
Did you find a solution?
There is
pipenv check
which uses thesafety
package from the guys at pyup.io and checks if there is any security update on major libraries -- but it won't cover all the packages updates.Just leaving this here:
pipenv does have an "outdated" command according to this issue github.com/kennethreitz/pipenv/iss...
Nice! Thanks ;)
Hello from the future, I just start using pipenv. It was very useful your post.
Thanks :D
Thanks for tour message! I'm happy this little post can help 🙏
Last I check pipenv, it still have issue with packages in private vcs repo.
Look like the PR has been merged, I'll give it another try.
github.com/kennethreitz/pipenv/pul...