pythonbrew多版本管理工具

pythonbrew多版本管理工具

pythonbrew是一个python版本管理的工具,具体命令见http://pythonbrew.readthedocs.org/en/latest/。

pythonbrew install 2.5.6 的问题

在安装python 2.5.6的时候遇到编译错误make: *** [Modules/getbuildinfo.o] error 1,google了一番,参考了http://askubuntu.com/questions/398481/make-python2-5-failed-on-ubuntu-13-04的解决方法。
在python 2.5.6下载解压后的目录/HOME/.pythonbrew/build/Python-2.5.6
手动执行SVNVERSION=not-found ./configure --prefix=/HOME/.pythonbrew/pythons/Python-2.5.6
把python2.5.6安装到了pythonbrew预定的目录就可以了。

pythonbrew管理虚拟环境
  1. pythonbrew venv init
  2. pythonbrew venv create proj -p x.x.x
  3. 以上2步就创建了一个可用的虚拟环境,然后到需要环境的工程,执行pythonbrew venv use proj就可以使用之前创建的虚拟环境了。

ps:pythonbrew有个别名pybrew

你可能感兴趣的:(python,pythonbrew)