10 lines
635 B
Plaintext
10 lines
635 B
Plaintext
# Python 3.4 requires "python3.4" to be executable if it is in ${PATH}.
|
|
if ! pyenv-which python3.4 1>/dev/null 2>&1; then
|
|
if pyenv-whence python3.4 1>/dev/null 2>&1; then
|
|
export PYENV_VERSION="$(pyenv-whence python3.4 2>/dev/null | tail -1)"
|
|
fi
|
|
fi
|
|
install_hg "Python-3.4-dev" "https://bitbucket.org/mirror/cpython" "default" standard verify_py34
|
|
install_package "setuptools-0.7.2" "https://bitbucket.org/pypa/setuptools/downloads/setuptools-0.7.2.tar.gz#20003718b266929c4a49e5d7ba3f792c" python
|
|
install_package "pip-1.3.1" "http://pypi.python.org/packages/source/p/pip/pip-1.3.1.tar.gz#cbb27a191cebc58997c4da8513863153" python
|