浏览代码

Merge pull request #1910 from native-api/full_install_message

Place full shell configuration instructions into `pyenv init`
pull/1912/head
native-api 5 年前
提交者 GitHub
父节点
当前提交
f0a8e72c36
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 16 次插入2 次删除
  1. +16
    -2
      libexec/pyenv-init

+ 16
- 2
libexec/pyenv-init 查看文件

@ -91,7 +91,21 @@ function help_() {
;;
esac
{ echo "# Load pyenv automatically by appending"
{ echo "# Add pyenv executable to PATH by adding"
echo "# the following to ~/.profile:"
echo
case "$shell" in
fish )
echo 'set -Ux PYENV_ROOT $HOME/.pyenv'
echo 'set -Ux fish_user_paths $PYENV_ROOT/bin $fish_user_paths'
;;
* )
echo 'export PYENV_ROOT="$HOME/.pyenv"'
echo 'export PATH="$PYENV_ROOT/bin:$PATH"'
;;
esac
echo
echo "# Load pyenv automatically by appending"
echo "# the following to ${profile}:"
echo
case "$shell" in
@ -103,7 +117,7 @@ function help_() {
;;
esac
echo
echo "# And the following to ~/.profile:"
echo "# and the following to ~/.profile:"
echo
case "$shell" in
fish )

正在加载...
取消
保存