-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipModules.py
More file actions
31 lines (22 loc) · 853 Bytes
/
PipModules.py
File metadata and controls
31 lines (22 loc) · 853 Bytes
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
Print("Module and PIP")
Print('''Module = is an python file that can be
imported to the current python file, to access to the previous
files functions/functionalities and codes inside the current file.
There are built in modules
There are external modules are in the Lib folder of the python
program folder.
''')
print('''
Python module indexes on python official website
Also search for other developers modules
''')
print('''
open cmd promp
type pip --version, to see if there is pip installed.
then type pip install and the module name.
PIP is an package manager, install, modify, update, un install
program to install python modules
comes pre installed with 3.7.2 python
the installed modules will be in the Lib folder in site pakages folder.
un install py typing pip uninstall in command promt.
''')