-
-
Notifications
You must be signed in to change notification settings - Fork 401
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
Warning about the load path tells the user to append to ~/.bash_profile
which makes ~/.profile
not run
#383
Comments
It does seem that a preferred way would be to use the same file for all these commands as the commands from This would mean this isn't just pyenv-virtualenv issue but I don't know if I should make another one. |
@anton-petrov I warned you about that in pyenv/pyenv-installer#109 (comment) ! |
Fixed 8c7ef73 |
While the issue from the title is resolved, the one I mentioned in the second comment isn't. Currently, when following instructions, users would add these lines to the end of
And these lines to the end of
which leads to a situation where This wasn't an issue before as pyenv-installer told users to put all of the lines in Should I make a separate issue for this? |
Currently, this is the warning message you get from pyenv installer after installation (the part that concerns this issue is from
pyenv-virtualenv
and is at the end of this code block):This leads to a situation where the user will have both
~/.profile
and~/.bash_profile
which in turn causes~/.profile
to not be run at all and therefore making the PATH change in~/.profile
not actually run (and that means everything else simply doesn't work).From bash(1) manual (emphasis mine):
The text was updated successfully, but these errors were encountered: