xxxxxxxxxx
# If you are using Python 2 (Windows)
pip install pytz
# if you are using Python 3 (Windows)
pip3 install pytz
# If the pip is not set as environment varibale PATH
python -m pip install pytz
# If you are using Python 2 (Linux)
sudo pip install pytz
# if you are using Python 3 (Linux)
sudo pip3 install pytz
# In case if you have to easy_install
sudo easy_install -U pytz
# On Centos
yum install pytz
# On Ubuntu
sudo apt-get install pytz
# If you are installing it in Anaconda
conda install -c conda-forge pytz
xxxxxxxxxx
#ImportError: Unable to import required dependencies:
#pytz: No module named 'pytz'
pip install pytz
xxxxxxxxxx
#In my case, I already had pytz installed on my device. However, it
#still gave me this error. As I was working in Visual Studio Code, I followed
#these steps to fix the issue:
#1. Press Ctrl+Shift+P
#2. Select the Microsoft recommended Python Interpreter
#(3.10.7 at the time of writing)
#3. Check to see if your code runs
# It worked in my case, so I believe it should work in your case as well!