mirror of
https://github.com/pyenv/pyenv.git
synced 2026-09-10 15:46:17 -04:00
13 lines
866 B
Plaintext
13 lines
866 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-version-name):$(pyenv-whence python3.4 2>/dev/null | tail -1)"
|
|
fi
|
|
fi
|
|
|
|
require_cc --if has_broken_mac_llvm_gcc "clang"
|
|
install_package "readline-6.2" "http://ftpmirror.gnu.org/readline/readline-6.2.tar.gz#67948acb2ca081f23359d0256e9a271c" standard --if has_broken_mac_readline
|
|
install_hg "Python-3.4-dev" "https://bitbucket.org/mirror/cpython" "default" standard verify_py34
|
|
install_package "setuptools-0.9.7" "https://pypi.python.org/packages/source/s/setuptools/setuptools-0.9.7.tar.gz#ce3bb480e4f6d71fc2fb3388f6fe8123" python
|
|
install_package "pip-1.4" "https://pypi.python.org/packages/source/p/pip/pip-1.4.tar.gz#ca790be30004937987767eac42cfa44a" python
|