【Python】pyenv 安裝方式

ringoo_ming發表於2019-05-23

1.git安裝

yum install -y git

2.安裝python編譯依賴

yum install -y gcc make path gdbm-devel openssl-devel sqlite-devel readline-devel zlib-devel bzip2-devel

3.建立使用者python

useradd python

4.登入使用者python後安裝pyenv

curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash

注意:1.如果出現curl: (35) SSL connect error的原因是nss版本過低,用yum -y update nss更新一下就可以了

yum -y update nss

緊接著繼續curl安裝如果出現這樣的提示:WARNING: seems you still have not added 'pyenv' to the load path.

就把綠框中的加到bash 檔案中:

export PATH="/home/python/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"

然後再source一下即可

source ~/.bash_profile


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31442725/viewspace-2645334/,如需轉載,請註明出處,否則將追究法律責任。

相關文章