A common error you may encounter when using Python is modulenotfounderror: no module named ‘pyautogui’.
This error occurs if you do not install pytz
before importing it or install the library in the wrong environment.
You can install pytz
in Python 3 with python3 -m pip install pytz
.
Or conda install -c conda-forge pytz
for conda environments.
This tutorial goes through the exact steps to troubleshoot this error for the Windows, Mac and Linux operating systems.
Table of contents
What is ModuleNotFoundError?
The ModuleNotFoundError occurs when the module you want to use is not present in your Python environment. There are several causes of the modulenotfounderror:
The module’s name is incorrect, in which case you have to check the name of the module you tried to import. Let’s try to import the re module with a double e to see what happens:
import ree
--------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) 1 import ree ModuleNotFoundError: No module named 'ree'
To solve this error, ensure the module name is correct. Let’s look at the revised code:
import re print(re.__version__)
2.2.1
You may want to import a local module file, but the module is not in the same directory. Let’s look at an example package with a script and a local module to import. Let’s look at the following steps to perform from your terminal:
mkdir example_package cd example_package mkdir folder_1 cd folder_1 vi module.py
Note that we use Vim to create the module.py
file in this example. You can use your preferred file editor, such as Emacs or Atom. In module.py
, we will import the re module and define a simple function that prints the re version:
import re def print_re_version(): print(re.__version__)
Close the module.py
, then complete the following commands from your terminal:
cd ../ vi script.py
Inside script.py
, we will try to import the module we created.
import module if __name__ == '__main__': mod.print_re_version()
Let’s run python script.py
from the terminal to see what happens:
Traceback (most recent call last): File "script.py", line 1, in ≺module≻ import module ModuleNotFoundError: No module named 'module'
To solve this error, we need to point to the correct path to module.py
, which is inside folder_1
. Let’s look at the revised code:
import folder_1.module as mod if __name__ == '__main__': mod.print_re_version()
When we run python script.py
, we will get the following result:
2.2.1
You can also get the error by overriding the official module you want to import by giving your module the same name.
Lastly, you can encounter the modulenotfounderror when you import a module that is not installed in your Python environment.
What is Pytz?
The Pytz library provides the IANA (Olson) time zone database for Python.
The simplest way to install pytz
is to use the package manager for Python called pip
. The following installation instructions are for the major Python version 3.
Always Use a Virtual Environment to Install Packages
It is always best to install new libraries within a virtual environment. You should not install anything into your global Python interpreter when you develop locally. You may introduce incompatibilities between packages, or you may break your system if you install an incompatible version of a library that your operating system needs. Using a virtual environment helps compartmentalize your projects and their dependencies. Each project will have its environment with everything the code needs to run. Most ImportErrors and ModuleNotFoundErrors occur due to installing a library for one interpreter and trying to use the library with another interpreter. Using a virtual environment avoids this. In Python, you can use virtual environments and conda environments. We will go through how to install pytz
with both.
How to Install pytz on Windows Operating System
First, you need to download and install Python on your PC. Ensure you select the install launcher for all users and Add Python to PATH checkboxes. The latter ensures the interpreter is in the execution path. Pip is automatically on Windows for Python versions 2.7.9+ and 3.4+.
You can check your Python version with the following command:
python3 --version
You can install pip on Windows by downloading the installation package, opening the command line and launching the installer. You can install pip via the CMD prompt by running the following command.
python get-pip.py
You may need to run the command prompt as administrator. Check whether the installation has been successful by typing.
pip --version
virtualenv env
You can activate the environment by typing the command:
env\Scripts\activate
You will see “env
” in parenthesis next to the command line prompt. You can install pytz
within the environment by running the following command from the command prompt.
python3 -m pip install pytz
We use python -m pip
to execute pip using the Python interpreter we specify as Python. Doing this helps avoid ImportError when we try to use a package installed with one version of Python interpreter with a different version. You can use the command which python to determine which Python interpreter you are using.
How to Install pytz on Mac Operating System using pip
Open a terminal by pressing command (⌘) + Space Bar to open the Spotlight search. Type in terminal and press enter. To get pip, first ensure you have installed Python3:
python3 --version
Python 3.8.8
Download pip by running the following curl command:
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
The curl
command allows you to specify a direct download link. Using the -o
option sets the name of the downloaded file.
Install pip by running:
python3 get-pip.py
To install pytz
, first create the virtual environment:
python3 -m venv env
Then activate the environment using:
source env/bin/activate
You will see “env
” in parenthesis next to the command line prompt. You can install pytz
within the environment by running the following command from the command prompt.
python3 -m pip install pytz
How to Install pytz on Linux Operating Systems
All major Linux distributions have Python installed by default. However, you will need to install pip. You can install pip from the terminal, but the installation instructions depend on the Linux distribution you are using. You will need root privileges to install pip. Open a terminal and use the commands relevant to your Linux distribution to install pip.
Installing pip for Ubuntu, Debian, and Linux Mint
sudo apt install python-pip3
Installing pip for CentOS 8 (and newer), Fedora, and Red Hat
sudo dnf install python-pip3
Installing pip for CentOS 6 and 7, and older versions of Red Hat
sudo yum install epel-release sudo yum install python-pip3
Installing pip for Arch Linux and Manjaro
sudo pacman -S python-pip
Installing pip for OpenSUSE
sudo zypper python3-pip
pytz installation on Linux with Pip
To install pytz
, first create the virtual environment:
python3 -m venv env
Then activate the environment using:
source env/bin/activate
You will see “env
” in parenthesis next to the command line prompt. You can install pytz
within the environment by running the following command from the command prompt.
Once you have activated your virtual environment, you can install pytz
using:
python3 -m pip install pytz
Installing pytz Using Anaconda
Anaconda is a distribution of Python and R for scientific computing and data science. You can install Anaconda by going to the installation instructions. Once you have installed Anaconda, you can create a virtual environment and install pytz
.
To create a conda environment you can use the following command:
conda create -n project python=3.8
You can specify a different Python 3 version if you like. Ideally, choose the latest version of Python. Next, you will activate the project container. You will see “project
” in parentheses next to the command line prompt.
source activate project
Now you’re ready to install pytz
using conda.
Once you have installed Anaconda and created your conda environment, you can install pytz
using the following command:
conda install -c conda-forge pytz
Check pytz Version
Once you have successfully installed pytz
, you can check its version. If you used pip to install pytz
, you can use pip show from your terminal.
python3 -m pip show pytz
Name: pytz Version: 2021.3 Summary: World timezone definitions, modern and historical Home-page: http://pythonhosted.org/pytz
Second, within your python program, you can import pytz
and then reference the __version__
attribute:
import pytz print(pytz.__version__)
2021.3
If you used conda to install pytz
, you could check the version using the following command:
conda list -f pytz
# Name Version Build Channel pytz 2022.1 pyhd8ed1ab_0 conda-forge
Using pytz Example
Let’s look at an example of using the pytz
module to print the date and time based on the US/Eastern time zone and the Asia/Hong Kong time zone using the pytz.timezone()
method.
# Import datetime module import datetime as dt # Import pytz module import pytz # Set the target time-zone asia_hk_time_zone = pytz.timezone('Asia/Hong_Kong') us_east_time_zone = pytz.timezone('US/Eastern') # Read the datetime of the specified timezone print('Datetime with US/Eastern Time-zone: ', dt.datetime.now(tz=us_east_time_zone)) print('Datetime with Asia/Hong Kong Time-zone: ', dt.datetime.now(tz=asia_hk_time_zone))
Let’s run the code to print the two datetimes to the console.
Datetime with US/Eastern Time-zone: 2022-07-30 06:31:20.051603-04:00 Datetime with Asia/Hong Kong Time-zone: 2022-07-30 18:31:20.051735+08:00
Summary
Congratulations on reading to the end of this tutorial.
Go to the online courses page on Python to learn more about Python for data science and machine learning.
For further reading on missing modules in Python, go to the article:
- How to Solve Python ModuleNotFoundError: no module named ‘urllib2’.
- How to Solve ModuleNotFoundError: no module named ‘plotly’.
- How to Solve Python ModuleNotFoundError: no module named ‘pymongo’
Have fun and happy researching!
Suf is a senior advisor in data science with deep expertise in Natural Language Processing, Complex Networks, and Anomaly Detection. Formerly a postdoctoral research fellow, he applied advanced physics techniques to tackle real-world, data-heavy industry challenges. Before that, he was a particle physicist at the ATLAS Experiment of the Large Hadron Collider. Now, he’s focused on bringing more fun and curiosity to the world of science and research online.