0% found this document useful (0 votes)
3 views

Basic Library for Coder

The document provides a comprehensive list of Python libraries for various purposes, including data science, web development, data handling, system networking, and other tools, along with the corresponding pip installation commands. It also mentions that some libraries, such as csv and json, are part of the Python standard library and do not require installation. Additionally, it suggests creating a virtual environment for better dependency management when installing multiple libraries.

Uploaded by

RATHORE
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

Basic Library for Coder

The document provides a comprehensive list of Python libraries for various purposes, including data science, web development, data handling, system networking, and other tools, along with the corresponding pip installation commands. It also mentions that some libraries, such as csv and json, are part of the Python standard library and do not require installation. Additionally, it suggests creating a virtual environment for better dependency management when installing multiple libraries.

Uploaded by

RATHORE
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

Got it!

Below are the commands you need to install the libraries I mentioned earlier using
pip (Python's package manager):

1. Data Science / Machine Learning Libraries

NumPy

pip install numpy

Pandas

pip install pandas

Matplotlib

pip install matplotlib

Seaborn

pip install seaborn

SciPy

pip install scipy

Scikit-learn

pip install scikit-learn

TensorFlow

pip install tensorflow

Keras

pip install keras

XGBoost

pip install xgboost

PyTorch

pip install torch

Statsmodels

pip install statsmodels

Plotly

pip install plotly


2. Web Development Libraries

Flask

pip install flask

Django

pip install django

Requests

pip install requests

BeautifulSoup

pip install beautifulsoup4

Selenium

pip install selenium

SQLAlchemy

pip install sqlalchemy

3. Data Handling / File Operations Libraries

CSV

 Note: csv is part of the Python standard library, so you don't need to install it.

JSON

 Note: json is also part of the Python standard library, so no installation is needed.

OS

 Note: os is part of the Python standard library, so no installation is needed.

Shutil

 Note: shutil is part of the Python standard library, so no installation is needed.

Openpyxl

pip install openpyxl


Pillow

pip install pillow

4. System & Networking Libraries

Socket

 Note: socket is part of the Python standard library, so no installation is needed.

Subprocess

 Note: subprocess is part of the Python standard library, so no installation is needed.

Threading

 Note: threading is part of the Python standard library, so no installation is needed.

5. Other Libraries

Pytest

pip install pytest

Logging

 Note: logging is part of the Python standard library, so no installation is needed.

Pdb

 Note: pdb is part of the Python standard library, so no installation is needed.

Uuid

pip install uuid

Cryptography

pip install cryptography

Yaml

pip install pyyaml

Pickle

 Note: pickle is part of the Python standard library, so no installation is needed.


Msgpack

pip install msgpack

6. Other Tools (like Interactive Visualization)

Altair

pip install altair

Bokeh

pip install bokeh

ggplot

pip install ggplot

How to Install Multiple Libraries at Once

You can install multiple libraries in one go by listing them together:

pip install numpy pandas matplotlib seaborn scipy scikit-learn tensorflow


keras xgboost torch statsmodels plotly flask django requests beautifulsoup4
selenium sqlalchemy openpyxl pillow pytest cryptography pyyaml msgpack
altair bokeh ggplot

These commands will install the libraries globally. If you prefer to manage your
dependencies better, especially for larger projects, it's a good practice to create a virtual
environment and install packages within it.

Create a Virtual Environment (Optional):

python -m venv myenv # Create a virtual environment named 'myenv'


source myenv/bin/activate # Activate the virtual environment on
Linux/macOS
myenv\Scripts\activate # Activate the virtual environment on Windows

Then you can run the pip install commands to install packages within the virtual
environment. To deactivate the virtual environment, you can run:

deactivate

Let me know if you need further assistance!

You might also like