-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpip_module.py
More file actions
13 lines (13 loc) · 870 Bytes
/
pip_module.py
File metadata and controls
13 lines (13 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
# Description: This is a python file that will install a module using pip
#pip is a package manager for python which is used to install modules
#To install a module using pip, you can use the command pip install module_name in the terminal
#module is a python file that contains functions, classes and variables
#To use a module in a python file, you need to import it using the import keyword
import pandas
#pandas is a module #pandas is an external module that is not included in the python standard library
#To install pandas using pip, you can use the command pip install pandas in the terminal
#hashlib is a built in module that is included in the python standard library
#a built in module does not need to be installed using pip
#To use a built in module in a python file, you can import it using the import keyword
import hashlib
print("Pips and modules done!")