-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pipenv command now prompts me to install latest to use plugin #1
Comments
I'm not sure why you're getting this error. |
So I uninstalled the fish plugin with |
Closing issue as recommended solution is now available in the Readme. |
✨🍰✨ |
Solution in the README didn't work for me. For starters, I didn't even have a ~/.config/fish/config.d directory so the plugin wasn't installing anything there. I created it anyway along with a script to set the path to my Python installation (conda) and that didn't make this problem go away. |
I'm still having this issue as well. Solutions in README don't work and don't acknowledge that the issue exists on platforms outside of MacOS. I'm being prompted to install the latest version, in spite of pipenv being installed with --user using global python version as well as being installed within the virtualenv (via pyenv) that I'm using. This is on a VPS running Ubuntu 16.04, btw. |
I wanna add, that this issue seems to be the default state, if you manage you python installations with pyenv and install the $ tree .config/fish
...
├── conf.d
│ ├── pipenv.fish -> /Users/markus/.config/fisherman/pipenv/conf.d/pipenv.fish
│ └── pyenv.fish -> /Users/markus/.config/fisherman/pyenv/conf.d/pyenv.fish
... If I change the ordering like so, the issue is gone. ...
├── conf.d
│ ├── 01_pyenv.fish -> /Users/markus/.config/fisherman/pyenv/conf.d/pyenv.fish
│ └── 02_pipenv.fish -> /Users/markus/.config/fisherman/pipenv/conf.d/pipenv.fish
... |
An even better way to fix this issue may be the use of the universal variable set -U fish_user_paths ~/.pyenv/shims $fish_user_paths The |
I've just upgraded to the latest pipenv plugin for fish shell. Since the upgrade all pipenv commands prompt me with the following
Install http://docs.pipenv.org/en/latest/ to use this plugin.
I already have pipenv installed to the latest. The output of
command -s pipenv
is/Users/napo/.pyenv/shims/pipenv
As it stands, I can't use pipenv.
The text was updated successfully, but these errors were encountered: