Celeb Glow
news | March 29, 2026

No module named praw error

I am currently trying to run a script change_wallpaper_reddit.sh which calls change_wallpaper_reddit.py. I get this error, however:

Traceback (most recent call last): File "/home/sharan/Daily-Reddit-Wallpaper/change_wallpaper_reddit.py", line 7, in <module> import praw
ImportError: No module named praw

However, when I do a pip install praw:

Requirement already satisfied: praw in /home/sharan/miniconda2/lib/python2.7/site-packages
Requirement already satisfied: decorator<4.1,>=4.0.9 in /home/sharan/miniconda2/lib/python2.7/site-packages (from praw)
Requirement already satisfied: update-checker==0.11 in /home/sharan/miniconda2/lib/python2.7/site-packages (from praw)
Requirement already satisfied: six==1.10 in /home/sharan/miniconda2/lib/python2.7/site-packages (from praw)
Requirement already satisfied: requests>=2.3.0 in /home/sharan/miniconda2/lib/python2.7/site-packages (from praw)

Now here is one resource on SO, that deals with this problem, but it is for Mac OSX and not Ubuntu.

Output of pip --version:

pip 9.0.1 from /home/sharan/miniconda2/lib/python2.7/site-packages (python 2.7)

Output of /usr/bin/env python --version:

Python 2.7.13 :: Continuum Analytics, Inc.
11

1 Answer

From Python 2.7.13 :: Continuum Analytics, Inc. what I can see is that you are running a third party version of python as your default python.

You can change your PATH environment variable and give a higher priority to default python:

PATH=/usr/bin:$PATH

Or open this file: change_wallpaper_reddit.py, it starts with a line similar to: #!/usr/bin/env python, change it to #!/usr/bin/python2.7.

Save the file and run your script again.

If you get any other error related to modules just install those modules too.

Also install the modules using apt instead of pip because I believe your pip is installed using the third party python and packages installed using it are not available to your system's python.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy