The ImportError Cannot Import Name Markup From Jinja2 error occurs when we try to import the markup module from Jinja2. The reason for getting this error is that the markup class was removed from the Jinja 3.1.0 version. So, if you are using Jinja 3.1.0 version or later, you will face this error. In this short article, we will discuss and learn how we can solve the issue. Moreover, we will also cover other possible reasons for getting this error as well.
Solve ImportError Cannot Import Name Markup From Jinja2
When you try to import the Markup class from the Jinja2 module, you will get ImportError: Cannot Import Name Markup From Jinja2 error because the Markup class has been removed from the Jinja2 version 3.1.0. The issue can be solved through many methods. One of the methods is either to upgrade the Flask module or import the Markup from Markupsafe instead.

Now let us go through some other possible reasons for getting this error and then we will solve the issue using various methods.
- The module Jinja2 is not installed on your system and you are trying to import the module.
- Maybe there is the possibility that the version of the installed Jinja2 module on your system is not the same as the version needed for the specific Python script.
- Sometimes, we make typo mistakes and don’t even realize it. So, make sure you are using the correct name for the module.
- Make sure that the installation is not broken and that you have completed the installation process.
- If you have installed the module globally and then tried to import it on a virtual environment then you will get an error. So, better to install the module on a virtual environment as well if you are using one.
Install the updated version of Flask
One solution to the problem is to install the updated version of the Flast on your system. First, remove the Flask module which is installed on your system using the following commands:
pip uninstall Flask Jinja2
Now you can install the Flask module again.
pip install Flask Jinja2
Moreover, if the pip command is not working for you, then as an alternative, you can use any of the given commands for the installation.
# using Python 2
pip install Flask Jinja2
# (could also be pip3.10 depending on your version)
pip3 install Flask Jinja2
# on linux operating system
sudo pip3 install Flask Jinja2
# on windows
pip install Flask Jinja2 --user
# using pip version
python -m pip install Flask Jinja2
#using pip3 version
python3 -m pip install Flask Jinja2
# for Anaconda
conda install -c conda-forge Flask Jinja2
# for Jupyter Notebook
!pip install Flask Jinja2
# using py alias (Windows)
py -m pip install Flask Jinja2
Hopefully, you will no more get the error once you have installed the updated version of the Flask module.
Installing Jinja2 module
Another reason why you are getting the error might be you have installed the old version of Jinja2 or you haven’t installed the module yet. If this is the case, you can use any of the given commands to install the Jinja2 module on your system.
# using Python 2
pip install Jinja2
# for pip 2 version
pip3 install Jinja2
# on linux operating system
sudo pip3 install Jinja2
# on windows
pip install Jinja2 --user
# using pip version
python -m pip install Jinja2
#using pip3 version
python3 -m pip install Jinja2
Once the installation is complete, you can then use the following commands to import the markup.
from jinja2.utils import markupsafe
markupsafe.Markup()
This will help you to get rid of ImportError: Cannot Import Name Markup From Jinja2 error.
Upgrading Other Necessary Modules
Sometimes, the error can be caused by having necessary modules with older versions. So, it is always a better idea to have the latest versions of the modules. Upgrading the following modules will also help you to solve the issue.
pip install --upgrade babel
pip install --upgrade python-dateutil
pip install --upgrade flask-moment
pip install --upgrade flask-wtf
pip install --upgrade flask_sqlalchemy
Upgrade the given modules one by one.
Summary
In this short article, we discussed how we can solve the ImportError: Cannot Import Name Markup From Jinja2 error using various methods. We also discussed the reasons for getting the error.
Related Errors
- FileNotFoundError: [Errno 2] No such file or directory in Python
- Typeerror: String Indices Must be Integers Error in Python
- TypeError: Unsupported Operand Type(s) for -: ‘list’ and ‘list’
- ValueError: You Must Pass a Freq Argument as Current Index has None
- TypeError: ‘module’ object is not callable [Solved]