Linked Questions
24 questions linked to/from Modules are installed using pip on OSX but not found when importing
4 votes
0 answers
4k views
I cannot import sqlalchemy without getting ImportError: No module named sqlalchemy [duplicate]
I'm on Mac OSX and I cannot import sqlalchemy. Here is what I did. I ran: $ pip install sqlalchemy Requirement already satisfied: sqlalchemy in /usr/local/lib/python2.7/site-packages (1.3.1) I ...
1 vote
0 answers
789 views
MAC OS import mysql.connector ModuleNotFoundError: No module named 'mysql' [duplicate]
when i do import mysql.connector it says am00.py", line 5, in import mysql.connector ModuleNotFoundError: No module named 'mysql' but I installed all things that I need(MySQL, python, mysql-...
648 votes
38 answers
2.7m views
Python error "ImportError: No module named"
Python is installed in a local directory. My directory tree looks like this: (local directory)/site-packages/toolkit/interface.py My code is in here: (local directory)/site-packages/toolkit/...
213 votes
36 answers
1.1m views
ImportError: No module named Crypto.Cipher
When I try to run app.py (Python 3.3, PyCrypto 2.6) my virtualenv keeps returning the error listed above. My import statement is just from Crypto.Cipher import AES. I looked for duplicates and you ...
62 votes
15 answers
353k views
Python pip install module is not found. How to link python to pip location?
I'm a newbie and I needed the pySerial and feedparser module for my projects. I'm running Mountain lion. I followed the following tutorial so that I could upgrade to python 2.7.3 and then use the ...
69 votes
6 answers
176k views
ImportError: No module named - Python
I have a python application with the following directory structure: src | +---- main | +---- util | +---- gen_py | +---- lib In the package main, I have a python module named ...
3 votes
6 answers
5k views
Cannot import praw
When I try to use import praw I get the following error: ModuleNotFoundError: No module named 'praw' I made sure to install praw beforehand in the command prompt, using pip install praw, so I'm not ...
5 votes
2 answers
10k views
ImportError: No module named Scrapy; even if Scrapy was successfully installed
I am trying to use Scrapy in Python, but even if it is installed, afterwards it is not found when I try import it. I am quite new at python and dealing directly with the Terminal, so probably I am ...
4 votes
1 answer
18k views
Pip installs but module is not found
I am trying to install Exscript from github. pip install -e 'git+git://github.com/knipknap/exscript.git#egg=Exscript' ... Successfully installed Exscript Cleaning up.. When i try to load it, python ...
1 vote
4 answers
9k views
How do I install the shap module on Mac?
I am trying to install the shap package and keep getting the following error ModuleNotFoundError: No module named 'shap' I have typed the following into my notebook as well as terminal !conda install -...
2 votes
2 answers
4k views
google.protobuf installed, but module not found
I have installed protobuf but when I run my script that uses pb.py it complains: from google.protobuf import descriptor as _descriptor ImportError: No module named google.protobuf However when I ...
1 vote
1 answer
4k views
installing pyside using PIP - nmake not found
I want to install PySide using PIP package manager. But it get this error message saying it didn't find nmake. This is no surprise because I do not have MSVC installed nor do I intend to. Installing ...
1 vote
4 answers
4k views
MacOS - Python says module not found, but it's already installed
I am trying to run a Python script locally using python3. This script requires proxymanager. Requirement already satisfied: proxymanager in /Library/Frameworks/Python.framework/Versions/3.9/lib/...
2 votes
1 answer
4k views
Pyperclip - no module | Automate the boring stuff
My question is about running a simple mapit python script using the Mac terminal to execute. I am following along with 'Automate the boring stuff'. I created a script to copy an address either from a ...
0 votes
1 answer
3k views
Trying to resolve ModuleNotFoundError: No module named
Trying to install third party modules on my mac using pip and I am getting this error (Using IDLE as the Python shell): Traceback (most recent call last): File "<pyshell#1>", line 1, ...