-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpip in Python.py
31 lines (22 loc) · 952 Bytes
/
pip in Python.py
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
# Terminal:
# pip is the standard package manager for Python which helps to install and manage additional packages
# that are not available in the Python standard library.
# Installing packages
# pip install <package_name>
# For example, to install the pandas package, a popular package for data analysis in Python.
# pip install pandas
# Installing Specific version of a package
# To install version 2.21.0 of requests package,
# pip install requests==2.21.0
# List all packages with pip
# pip list
# Remove Packages with pip
# pip uninstall numpy
# This uninstalls the numpy package from our machine.
# Pycharm:
# Install
# Settings -> Project: CurrentProject -> Python Interpreter -> Click + -> Search Package -> Click on Install Package
# List
# Settings -> Project: CurrentProject -> Python Interpreter
# Delete
# Settings -> Project: CurrentProject -> Python Interpreter -> Click on the package -> Click -