File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -67,11 +67,11 @@ function update_pip {
6767 # Update pip, setuptools, and wheel
6868 if [[ " $( id -u) " -eq 0 ]]; then
6969 # If root
70- printf " \n### pip3 install --upgrade --no-cache-dir pip setuptools wheel\n"
71- pip3 install --upgrade --no-cache-dir pip setuptools wheel
70+ printf " \n### python3 -m pip --no-cache-dir install --upgrade pip setuptools wheel\n"
71+ python3 -m pip --no-cache-dir install --upgrade pip setuptools wheel
7272 else
73- printf " \n### pip3 install --user --upgrade --no-cache-dir pip setuptools wheel\n"
74- pip3 install --user --upgrade --no-cache-dir pip setuptools wheel
73+ printf " \n### python3 -m pip --no-cache-dir install --user --upgrade pip setuptools wheel\n"
74+ python3 -m pip --no-cache-dir install --user --upgrade pip setuptools wheel
7575 fi
7676}
7777
You can’t perform that action at this time.
0 commit comments