pyclipper
pyclipper copied to clipboard
Importing pyclipper throws module not found error
I am unable to import pyclipper after installing it using pip (and pip3). This first showed up while trying to install the K40 Whisprer tool on a raspberry pi, but I am also seeing it on my Windows desktop. Thank you in advance for your help.
Here is the output from pip that shows a successful install of pyclipper 1.1.0. pip3 install pyclipper Collecting pyclipper Downloading https://files.pythonhosted.org/packages/8f/70/b1e5d149c3cda6e52f112733b81c90d5827353915028b25a47a73815cc08/pyclipper-1.1.0.post3-cp37-cp37m-win32.whl (92kB) 100% |████████████████████████████████| 102kB 1.4MB/s Installing collected packages: pyclipper Successfully installed pyclipper-1.1.0.post3
Here is the output from the interactive python exe showing only an import.
Python 3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018, 23:09:28) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
import pyclipper
Traceback (most recent call last):
File "
I am having the same issue
Make sure you are using the pip installer that is connected to the python interpreter where you want to import pyclipper from. Maybe try installing it by invking python -m pip instead of just pip3, as it may be that you have more than one python installed.