8 lines
134 B
Bash
Executable File
8 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
curl --output /root/get-pip.py https://bootstrap.pypa.io/get-pip.py
|
|
python3 /root/get-pip.py
|
|
rm /root/get-pip.py
|