Skip to content

Installation

Requirements

  • Python 3.10 or higher
  • pip (Python's package installer)

Install from PyPI

The easiest way to install py-ds-academy is using pip:

pip install py-ds-academy

It's recommended to use a virtual environment to avoid conflicts with other packages:

# Create a virtual environment
python -m venv venv

# Activate it
source venv/bin/activate

# Install py-ds-academy
pip install py-ds-academy

Verify Installation

# Try importing
import py_ds

print(py_ds.__version__)

Upgrade

To upgrade to the latest version:

pip install --upgrade py-ds-academy

Next Steps

Development Installation

If you want to contribute to the project or work with the source code, see the Contributing Guide for instructions on setting up a development environment.