We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3437fc commit e07a033Copy full SHA for e07a033
cookbooks/python/recipes/install.bash
@@ -18,9 +18,6 @@ function install()
18
compileAndInstallFromSource "${PYTHON_DOWNLOAD_URL}" "${PYTHON_INSTALL_FOLDER_PATH}" "${PYTHON_INSTALL_FOLDER_PATH}/bin/python3" "$(whoami)"
19
ln -f -s "${PYTHON_INSTALL_FOLDER_PATH}/bin/python3" '/usr/local/bin/python'
20
21
- "${PYTHON_INSTALL_FOLDER_PATH}/bin/pip3" install --upgrade pip
22
- ln -f -s "${PYTHON_INSTALL_FOLDER_PATH}/bin/pip3" '/usr/local/bin/pip3'
23
-
24
# Config Profile
25
26
local -r profileConfigData=('__INSTALL_FOLDER_PATH__' "${PYTHON_INSTALL_FOLDER_PATH}")
@@ -30,7 +27,6 @@ function install()
30
27
# Display Version
31
28
32
29
displayVersion "$(python3 --version)"
33
- displayVersion "$(pip3 --version)"
34
35
umask '0077'
36
}
0 commit comments