Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Install Python 3.13 on Red Hat Enterprise Linux from EPEL

Python 3.13 now available in EPEL 9 and EPEL 10

September 22, 2025
Karolina Surma
Related topics:
LinuxPython
Related products:
Red Hat Enterprise Linux

    Python 3.13 packages are now available in the Extra Packages for Enterprise Linux (EPEL) repositories for Red Hat Enterprise Linux 9 and 10 (starting from EPEL 10.1). This provides a way for developers using  RHEL and CentOS Stream to work with the latest Python version.

    This article outlines how to install Python 3.13 from EPEL and explains its availability in the context of the Red Hat Enterprise Linux ecosystem.

    How to install Python 3.13

    First, ensure the EPEL repository is enabled on your system. Follow the instructions published in the official documentation to enable the repository compatible with your operating system.

    Once the EPEL repository is enabled, you can install Python 3.13.

    sudo dnf install python3.13

    To verify the installation, check the version (the printed value should be Python 3.13.7 or similar):

    python3.13 --version

    Available packages and use of virtual environments

    The EPEL repository provides the core Python 3.13 interpreter, its standard library, and essential tools like pip, setuptools, packaging, and flit-core.

    For managing project dependencies, it is recommended to use virtual environments. This isolates package requirements on a per-project basis.

    1. Create a virtual environment:

      python3.13 -m venv venv
    2. Activate the environment:

      . venv/bin/activate
    3. With that, the prefix (venv) should appear before the shell prompt symbol, indicating the virtual environment is currently active. Use Python and pip: Inside the activated environment, the python and pip commands are aliased to the 3.13 versions.

      python --version
    4. Install development packages into the virtual environment:

      python -m pip install numpy pandas

    Availability in EPEL versus RHEL

    The inclusion of software in the official RHEL repositories differs from its inclusion in the Extra Packages for Enterprise Linux repository. The decision to make Python 3.13 available in EPEL rather than base RHEL is based on several factors:

    • Maintenance and support: Red Hat Enterprise Linux provides a long-term support lifecycle (up to 10 years). Including a new software stack like Python represents a significant, long-term maintenance commitment for Red Hat.
    • System stability: The primary goal of Red Hat Enterprise Linux is stability. Adding new major versions of software to the base OS is done cautiously to avoid potential conflicts and to minimize the system's attack surface.
    • Release cadence policy: The RHEL team has generally been releasing 2 out of every 3 new Python versions to balance modernization with the goals of stability and supportability. For example, Red Hat Enterprise Linux 9 includes Python 3.9, 3.11, and 3.12, skipping 3.10.

    This is the role that EPEL fills. As a community-maintained repository, EPEL can provide newer software versions to users who need them, without affecting the stability and support commitments of the underlying enterprise distribution.

    Summary

    Python 3.13 is now accessible for users of Red Hat Enterprise Linux 9 and 10 and its derivatives through the community-supported EPEL repository. This allows for development and testing with the newest Python features in Enterprise Linux.

    Learn more about getting access to Red Hat Enterprise Linux with a Red Hat Developer subscription.

    Related Posts

    • How to install multiple versions of Python on Red Hat Enterprise Linux

    • Why some agentic AI developers are moving code from Python to Rust

    • What qualifies for Red Hat Developer Subscription for Teams?

    • How RHEL provides secure and stable Python streams

    • How to package Go applications in RHEL 10

    • Getting started with RHEL on WSL

    Recent Posts

    • Every layer counts: Defense in depth for AI agents with Red Hat AI

    • Fun in the RUN instruction: Why container builds with distroless images can surprise you

    • Trusted software factory: Building trust in the agentic AI era

    • Build a zero trust AI pipeline with OpenShift and RHEL CVMs

    • Red Hat Hardened Images: Top 5 benefits for software developers

    What’s up next?

    Download the Red Hat Enterprise Linux 10 cheat sheet. Whether you're deploying to the cloud, managing systems, or working with containers, this guide provides the key information you need for executing essential commands, image building, and system management.

    Get the cheat sheet
    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.