소스 검색

Merge branch 'master' of https://github.com/pyenv/pyenv

pull/3255/head
Ivan Pozdeev 1 년 전
부모
커밋
5e82f5cf81
1개의 변경된 파일18개의 추가작업 그리고 0개의 파일을 삭제
  1. +18
    -0
      README.md

+ 18
- 0
README.md 파일 보기

@ -252,6 +252,24 @@ See [Advanced configuration](#advanced-configuration) for details and more confi
```
</details>
#### Nushell
<details>
Add the following lines to your `config.nu` to add Pyenv and its shims to your `PATH`.
Shell integration (completions and subcommands changing the shell's state)
isn't currently supported.
~~~ nu
$env.PYENV_ROOT = "~/.pyenv" | path expand
if (( $"($env.PYENV_ROOT)/bin" | path type ) == "dir") {
$env.PATH = $env.PATH | prepend $"($env.PYENV_ROOT)/bin" }
$env.PATH = $env.PATH | prepend $"(pyenv root)/shims"
~~~
</details>
### C. Restart your shell
----

불러오는 중...
취소
저장