Skip to content

Commit 3868c4c

Browse files
committed
Adding Pip3 installer
1 parent 63af19b commit 3868c4c

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

installers/pip3/installer.toml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name = "Pip3"
2+
shortname = "pip3"
3+
description = "Pip is the package installer for Python"
4+
5+
[apt]
6+
sh = """
7+
@sudo apt-get update
8+
@sudo apt install python3-pip
9+
"""
10+
11+
[yum]
12+
sh = """
13+
@sudo yum install python3-pip
14+
"""
15+
16+
[pacman]
17+
sh = """
18+
pacman -S python-pip
19+
"""
20+
21+
[dnf]
22+
sh = """
23+
@sudo dnf install python3-pip
24+
"""
25+
26+
[apk]
27+
sh = """
28+
@sudo apk add py3-pip
29+
"""

0 commit comments

Comments
 (0)