Changing the update_pip
Signed-off-by: Marcin Woźniak <marcin.wozniak@wundermanthompson.com>
This commit is contained in:
parent
de865b3ea7
commit
72f5e481a4
@ -36,7 +36,11 @@ function command_start() {
|
|||||||
|
|
||||||
function update_pip() {
|
function update_pip() {
|
||||||
# Update the pip
|
# Update the pip
|
||||||
python3 -m pip install --upgrade pip --user
|
if [[ "$(uname)" == "Darwin" ]]; then
|
||||||
|
python3 -m pip install --upgrade pip --user
|
||||||
|
elif [[ "$(uname -r)" =~ "gentoo" ]]; then
|
||||||
|
sudo emerge dev-python/pip
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_neovim_module_for_python() {
|
function install_neovim_module_for_python() {
|
||||||
|
Loading…
Reference in New Issue
Block a user