pyenv安装

Posted ocean_boy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pyenv安装相关的知识,希望对你有一定的参考价值。

pyenv安装

https://github.com/pyenv/pyenv,这里是github的地址,pyenv是一个类似virtualenv的工具,提供python的多版本环境控制

安装依赖环境(root用户):

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

安装pyenv(普通用户):

$ git clone https://github.com/pyenv/pyenv.git ~/.pyenv
$ echo export PYENV_ROOT="$HOME/.pyenv" >> ~/.bash_profile
$ echo export PATH="$PYENV_ROOT/bin:$PATH" >> ~/.bash_profile
$ echo eval "$(pyenv init -)" >> ~/.bash_profile
$ exec "$SHELL"

查看支持的python版本:

$ pyenv install --list

安装具体的某个版本:

[[email protected] ~]$ pyenv install 3.6.2
Downloading Python-3.6.2.tar.xz...
-> https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tar.xz
Installing Python-3.6.2...
Installed Python-3.6.2 to /home/ocean/.pyenv/versions/3.6.2
[[email protected] ~]# pyenv install 3.5.2
pyenv: /root/.pyenv/versions/3.5.2 already exists
continue with installation? (y/N) y
Downloading Python-3.5.2.tar.xz...
-> https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tar.xz
Installing Python-3.5.2...
patching file Lib/venv/scripts/posix/activate.fish
Installed Python-3.5.2 to /root/.pyenv/versions/3.5.2

 

查看安装的python版本:

[[email protected] ~]$ pyenv versions
* system (set by /home/ocean/.pyenv/version)
  3.6.2

 

ok,简单使用可以查看帮助:

[[email protected] ~]$ pyenv help
Usage: pyenv <command> [<args>]

Some useful pyenv commands are:
   commands    List all available pyenv commands
   local       Set or show the local application-specific Python version
   global      Set or show the global Python version
   shell       Set or show the shell-specific Python version
   install     Install a Python version using python-build
   uninstall   Uninstall a specific Python version
   rehash      Rehash pyenv shims (run this after installing executables)
   version     Show the current Python version and its origin
   versions    List all Python versions available to pyenv
   which       Display the full path to an executable
   whence      List all Python versions that contain the given executable

See `pyenv help <command> for information on a specific command.
For full documentation, see: https://github.com/pyenv/pyenv#readme

 

以上是关于pyenv安装的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu系统安装Pyenv

centos中pyenv安装

python多版本管理工具--pyenv安装和使用

pyenv安装

linux 安装pyenv环境

如何在 microsoft windows 10 中使用 pyenv/pyenv-win 安装 python 版本?