mirror of
https://github.com/pyenv/pyenv.git
synced 2025-05-01 12:19:18 +00:00
14 lines
1.2 KiB
Groff
14 lines
1.2 KiB
Groff
install_package "openssl-1.0.2k" "https://www.openssl.org/source/old/1.0.2/openssl-1.0.2k.tar.gz#6b3977c61f2aedf0f96367dcfb5c6e578cf37e7b8d913b4ecb6643c3cb88d8c0" mac_openssl --if has_broken_mac_openssl
|
|
install_package "readline-8.0" "https://ftpmirror.gnu.org/readline/readline-8.0.tar.gz#e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461" mac_readline --if has_broken_mac_readline
|
|
install_package "Python-3.0.1" "https://www.python.org/ftp/python/3.0.1/Python-3.0.1.tgz#7d5f2feae9035f1d3d9e6bb7f092dbf374d6bb4b25abd0d2d11f13bba1cb04de" standard verify_py30
|
|
if [[ "Darwin" == "$(uname -s)" ]]; then
|
|
# https://github.com/pyenv/pyenv/issues/456
|
|
{ echo
|
|
colorize 1 "WARNING"
|
|
echo ": pyenv cannot install setuptools-1.4.2 to CPython 3.0.1 on OS X."
|
|
echo "setuptools and pip will not be available until you install them manually."
|
|
} >&2
|
|
else
|
|
install_package "setuptools-1.4.2" "https://pypi.python.org/packages/source/s/setuptools/setuptools-1.4.2.tar.gz#263986a60a83aba790a5bffc7d009ac88114ba4e908e5c90e453b3bf2155dbbd" python
|
|
install_package "pip-1.3.1" "https://pypi.python.org/packages/source/p/pip/pip-1.3.1.tar.gz#145eaa5d1ea1b062663da1f3a97780d7edea4c63c68a37c463b1deedf7bb4957" python
|
|
fi
|