Ai Lab
Ai Lab
3. Press “Enter”
Install Virtualenv:
Virtualenv is a program that’s used in Python to create
and manage virtual environments. It can specify which
Python version and directory is used to create the
virtual environment. It also installs all the necessary
files into the specified directory instead of the
systemwide Python installation directory.
1. Copy the command from below these instructions
2. Paste the command into PowerShell
python -m pip install virtualenv
3. Press “Enter”
Create the Virtual Environment:
The Virtual Environment is an isolated Python installation
directory that has its own interpreter, site-packages, and
scripts. It mostly gets used to prevent version conflicts
between dependencies from different projects. It also gets
used to meet dependency requirements of different
programs from GitHub.
3. Press “Enter”
Install Pillow:
Pillow is a Python library that’s used to manipulate
images in the Python interpreter. It enables Python to
open, manipulate, and save images in most image file
formats. It also has image processing capabilities such
as resizing, cropping, rotating, greyscaling,
transforming, and adding text to images.
1. Copy the command from below these instructions
2. Paste the command into PowerShell
python -m pip install pillow
3. Press “Enter”
Install Matplotlib:
Matplotlib is a Python library that’s used to create
static, animated, and interactive visualizations. It
produces production-quality graphs, charts, and figures
in a variety of formats. It can also be used in Python
scripts, shells, web application servers, and graphical
user interface toolkits.
1. Copy the command from below these instructions
2. Paste the command into PowerShell
python -m pip install matplotlib
3. Press “Enter”
Install OpenCV:
Open Source Computer Vision Library (OpenCV) is a C++
library that’s used in Python to build real-time
computer vision applications. It performs image
processing, video capture and analysis, face detection,
and object detection. It also has over 2,500 algorithms
that range from classic to state of the art.
1. Copy the command from below these instructions
2. Paste the command into PowerShell
python -m pip install opencv-python
3. Press “Enter”
Install Scikit-Learn:
Scikit-Learn is a Python library that’s used to build
train, and deploy machine learning models for
prototyping. It provides algorithms for regression,
clustering, and classification. It also includes
utilities for preprocessing data, model fitting, and
model selection and evaluation.
1. Copy the command from below these
instructions
2. Paste the command into PowerShell
python -m pip install scikit-learn
3. Press “Enter”