linky00
linky00

Reputation: 65

Python ImportError - Custom Module

I have installed a custom module (Twilio) using PIP, but when I try to import it, it will bring up:

ImportError: No module named 'twilio'

I'm running Windows 10 and Python 3.5. What am I missing? It seems to be an error with the paths. If it is, how do I set the paths?

Edit: I have my PYTHONHOME set to C:\Python33 and my PYTHONPATH set to C:Python33\Lib

Upvotes: 0

Views: 104

Answers (1)

dnit13
dnit13

Reputation: 2496

First of all you need to check your package location.

pip show custom_package

Then check the system paths by

import sys
sys.path

If you dont' see your package path here, you can add it.

sys.path.append(custom_package_path)

If this doesn't work try reinstalling it. Or you can also install it with easy_install

Upvotes: 1

Related Questions