Skip to content Skip to sidebar Skip to footer

Installing And Importing Python Modules Onto OS X

I've been trying for a couple of hours already. It seems IDLE can't find any third-party module. I am a Python beginner. Here is some info about my system: OSX version: 10.11.5 p

Solution 1:

It seems you are using conda, but you are trying to install the pyperclip module with pip. Have you tried running conda install pyperclip?

As stated here:

Because Conda introduces a new packaging format, you cannot use pip and Conda interchangeably; pip cannot install the Conda package format. You can use the two tools side by side but they do not interoperate either.


Post a Comment for "Installing And Importing Python Modules Onto OS X"