direnv 및 환경 변수

direnv 및 환경 변수

conda/mamba 환경을 자동으로 활성화하기 위해 direnv를 사용하려고 하는데 bash 스크립트가 환경 변수를 사용하는 방법에 대한 이해 부족으로 인해 문제가 발생하는 것 같습니다.

내 쉘은 Fish이지만 direnv는 bash 기반입니다. 나는 물고기에 대해 적절한 direnv 후크를 실행하고 있기 때문에 내 껍질이 물고기인 것이 이 문제에 어떤 영향도 미치지 않는다고 생각합니다.

.direnvrc파일은 다음과 같습니다.

layout_mamba() {
  local MAMBA_EXE="${HOME}/bin/micromamba" # Make sure this points to path of your micromamba executable
  # initialize micromamba
  eval "$(${MAMBA_EXE} shell hook --shell=bash)"
  if [ -n "$1" ]; then
    # Explicit environment name from layout command.
    local env_name="$1"
    micromamba activate ${env_name}
  elif (grep -q name: environment.yml); then
    # Detect environment name from `environment.yml` file in `.envrc` directory
    micromamba activate `grep name: environment.yml | sed -e 's/name: //'`
  else
    (>&2 echo No environment specified);
    exit 1;
  fi;
}

있는 그대로 작동하지만 내 선언에서는 eval나머지 호출에 직접 값을 사용하고 있습니다. micromamba를 $MAMBA_EXE로 바꾸려는 모든 시도는 실패했습니다.$MAMBA_EXEmicromamba

내 콘텐츠를 더욱 다양하게 만드는 방법에 대한 제안이 있나요 .direnvrc?

편집하다:예를 들어, 8행을 에서 로 변경하면 다음과 같은 결과를 micromamba activate ${env_name}얻습니다 ${MAMBA_EXE} activate ${env_name}.

direnv: loading ~/test-env/.envrc

'micromamba' is running as a subprocess and can't modify the parent shell.
Thus you must initialize your shell before using activate and deactivate.

    To initialize the current bash shell, run:
        $ eval "$(micromamba shell hook --shell=bash)"
    and then activate or deactivate with:
        $ micromamba activate
    
To automatically initialize all future (bash) shells, run:
    $ micromamba shell init --shell=bash --prefix=~/micromamba

Supported shells are {bash, zsh, csh, xonsh, cmd.exe, powershell, fish}.

critical libmamba Shell not initialized

물고기는 내가 달리는 것을 허용하지 않지만 ${MAMBA_EXE} shell hook --shell=bash달리면 다음이 $MAMBA_EXE shell hook --shell=bash생성됩니다.

# Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause

__mamba_exe() (
    "$MAMBA_EXE" "$@"
)

__mamba_hashr() {
    if [ -n "${ZSH_VERSION:+x}" ]; then
        \rehash
    elif [ -n "${POSH_VERSION:+x}" ]; then
        :  # pass
    else
        \hash -r
    fi
}

__mamba_activate() {
    \local ask_conda
    ask_conda="$(PS1="${PS1:-}" __mamba_exe shell --shell bash "$@")" || \return
    \eval "$ask_conda"
    __mamba_hashr
}

__mamba_reactivate() {
    \local ask_conda
    ask_conda="$(PS1="${PS1:-}" __mamba_exe shell --shell bash reactivate)" || \return
    \eval "$ask_conda"
    __mamba_hashr
}

micromamba() {
    \local cmd="${1-__missing__}"
    case "$cmd" in
        activate|deactivate)
            __mamba_activate "$@"
            ;;
        install|update|upgrade|remove|uninstall)
            __mamba_exe "$@" || \return
            __mamba_reactivate
            ;;
        self-update)
            __mamba_exe "$@" || \return

            # remove leftover backup file on Windows
            if [ -f "$MAMBA_EXE.bkup" ]; then
                rm -f $MAMBA_EXE.bkup
            fi
            ;;
        *)
            __mamba_exe "$@"
            ;;
    esac
}

if [ -z "${CONDA_SHLVL+x}" ]; then
    \export CONDA_SHLVL=0
    # In dev-mode MAMBA_EXE is python.exe and on Windows
    # it is in a different relative location to condabin.
    if [ -n "${_CE_CONDA+x}" ] && [ -n "${WINDIR+x}" ]; then
        PATH="${MAMBA_ROOT_PREFIX}/condabin:${PATH}"
    else
        PATH="${MAMBA_ROOT_PREFIX}/condabin:${PATH}"
    fi
    \export PATH

    # We're not allowing PS1 to be unbound. It must at least be set.
    # However, we're not exporting it, which can cause problems when starting a second shell
    # via a first shell (i.e. starting zsh from bash).
    if [ -z "${PS1+x}" ]; then
        PS1=
    fi
fi

if [ -n "${ZSH_VERSION:+x}" ]; then
  if ! command -v compinit > /dev/null; then
    autoload -U +X compinit && if [[ "${ZSH_DISABLE_COMPFIX-}" = true ]]; then
      compinit -u
    else
      compinit
    fi
  fi
  autoload -U +X bashcompinit && bashcompinit

  _umamba_zsh_completions()
  {
    COMPREPLY=($(__mamba_exe completer "${(@s: :)${(@s: :)COMP_LINE}:1}"))
  }

  complete -o default -F _umamba_zsh_completions micromamba
fi
if [ -n "${BASH_VERSION:+x}" ]; then
  _umamba_bash_completions()
  {
    COMPREPLY=($(__mamba_exe completer "${COMP_WORDS[@]:1}"))
  }
  complete -o default -F _umamba_bash_completions micromamba
fi

관련 정보