mirror of
https://github.com/pyenv/pyenv.git
synced 2025-11-10 12:33:48 -05:00
15 lines
481 B
Groff
15 lines
481 B
Groff
case "$OSTYPE" in
|
|
linux*)
|
|
case $(uname -m) in
|
|
x86_64)
|
|
export LDFLAGS="-L/usr/lib/x86_64-linux-gnu" # to fix build on Debian amd64
|
|
;;
|
|
esac
|
|
;;
|
|
esac
|
|
|
|
require_gcc
|
|
install_package "Python-2.5.5" "http://www.python.org/ftp/python/2.5.5/Python-2.5.5.tgz"
|
|
install_package "distribute-0.6.28" "http://pypi.python.org/packages/source/d/distribute/distribute-0.6.28.tar.gz" python
|
|
install_package "pip-1.1" "http://pypi.python.org/packages/source/p/pip/pip-1.1.tar.gz" python
|