-
Notifications
You must be signed in to change notification settings - Fork 0
/
pip_pi
62 lines (62 loc) · 1.16 KB
/
pip_pi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[
{
"cmd": "sudo apt install -y python3-pip",
"note": "install pip"
},
{
"cmd": "sudo apt remove -y python3-pip",
"note": "remove pip"
},
{
"cmd": "pip -V",
"note": "get pip version"
},
{
"cmd": "pip list",
"note": "list pip packages"
},
{
"cmd": "pip3 install virtualenv",
"note": "install virtualenv"
},
{
"cmd": "which virtualenv",
"note": "get virtualenv location"
},
{
"cmd": "pip3 install Django",
"note": "install Django"
},
{
"cmd": "python -c 'import django; print(django.get_version())'",
"note": "get Django version"
},
{
"cmd": "pip3 install bs4",
"note": "install beautiiful soup"
},
{
"cmd": "pip3 install mysql-connector-python",
"note": "install mysql"
},
{
"cmd": "pip3 install selenium",
"note": "install selenium"
},
{
"cmd": "pip3 install PyVirtualDisplay",
"note": "install PyVirtualDisplay"
},
{
"cmd": "pip3 install requests",
"note": "install requests"
},
{
"cmd": "pip3 install tweepy",
"note": "install tweepy"
},
{
"cmd": "pip install undetected-chromedriver",
"note": "install undetected-chromedriver"
}
]