Open In App

How To Install Sqlalchemy-Continuum

Last Updated : 09 Feb, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

In this article, we will guide you through the process of installing Sqlalchemy-Continuum.

What is Sqlalchemy-Continuum?

Sqlalchemy-Continuum is an extension for SQLAlchemy, a popular SQL toolkit and Object-Relational Mapping (ORM) library for Python. The purpose of Sqlalchemy-Continuum is to provide versioning and history-tracking capabilities to your SQLAlchemy models. In other words, Sqlalchemy-Continuum enables you to maintain a historical record of changes made to your database records over time.

How To Install Sqlalchemy-Continuum?

Below, are the step-by-step Implementation on How To Install Sqlalchemy-Continuum in Python.

Step 1: Create a Virtual Environment

First, create the virtual environment using the below commands

python -m venv env
.\env\Scripts\activate.ps1

Step 2 : Install Sqlalchemy-Continuum

Before using Sqlalchemy-Continuum, it is necessary to install the Sqlalchemy-Continuum library by executing the following command in the terminal:

pip install sqlalchemy_continuum

first

Step 3 : Show the Version

Once installed, verify that Sqlalchemy-Continuum is successfully installed by run the below command in terminal its also show the installed version.

pip show sqlalchemy_continuum

second


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads