「Pyenv」:修訂間差異
跳至導覽
跳至搜尋
第12行: | 第12行: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
git clone https://github.com/pyenv/pyenv.git ~/.pyenv; echo -e "export PYENV_ROOT=\"\${HOME}/.pyenv\"\nif [ -d \"\${PYENV_ROOT}\" ]; then\n export PATH=\"\${PYENV_ROOT}/bin:\${PYENV_ROOT}/shims:\${PATH}\"\n eval \"\$(pyenv init - --no-rehash)\"\nfi" >> ~/.profile; source ~/.profile; pyenv install 3.9. | git clone https://github.com/pyenv/pyenv.git ~/.pyenv; echo -e "export PYENV_ROOT=\"\${HOME}/.pyenv\"\nif [ -d \"\${PYENV_ROOT}\" ]; then\n export PATH=\"\${PYENV_ROOT}/bin:\${PYENV_ROOT}/shims:\${PATH}\"\n eval \"\$(pyenv init - --no-rehash)\"\nfi" >> ~/.profile; source ~/.profile; pyenv install 3.9.7; pyenv global 3.9.7; pip install -U pip; pip install -U poetry | ||
</syntaxhighlight> | </syntaxhighlight> | ||
於 2021年9月22日 (三) 18:25 的修訂
pyenv是一套在使用者環境下管理多個不同Python版本的套件。
安裝
先安裝系統需要的套件:
sudo apt install -y build-essential git libbz2-dev libcurl4-openssl-dev libffi-dev libreadline-dev libsqlite3-dev libssl-dev libz-dev; sudo apt clean
接下來在自己的空間下安裝pyenv,然後安裝最新版的Python,並且更新pip:
git clone https://github.com/pyenv/pyenv.git ~/.pyenv; echo -e "export PYENV_ROOT=\"\${HOME}/.pyenv\"\nif [ -d \"\${PYENV_ROOT}\" ]; then\n export PATH=\"\${PYENV_ROOT}/bin:\${PYENV_ROOT}/shims:\${PATH}\"\n eval \"\$(pyenv init - --no-rehash)\"\nfi" >> ~/.profile; source ~/.profile; pyenv install 3.9.7; pyenv global 3.9.7; pip install -U pip; pip install -U poetry
升級
pyenv
cd ~/.pyenv; git pull -v
Python
相關條目
外部連結
- 官方網站 (英文)