File: pyenv.sh

package info (click to toggle)
pyicloud 2.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 828 kB
  • sloc: python: 9,741; sh: 17; makefile: 3
file content (9 lines) | stat: -rwxr-xr-x 245 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/usr/bin/env zsh
# Install pyenv
curl -fsSL https://pyenv.run | bash
export PATH="$HOME/.pyenv/bin:$PATH"
export PYENV_ROOT="$HOME/.pyenv"
echo 'eval "$(pyenv init -)"' >> ~/.zshrc
eval "$(pyenv init -)"

pyenv install 3.9 3.10 3.11 3.12 3.13