Skip to content Skip to sidebar Skip to footer

Python 3.4 Pip Install

I am trying to install the xlrd module on my Mac, however when I open IDLE and import the xlrd module, I get the error: Input Error: No module named xlrd To install it, I used in

Solution 1:

To avoid conflicts between parallel Python 2 and Python 3 installations, only the versioned pip3 and pip3.4 commands are bootstrapped by default

You can try sudo pip3 install xlrd or sudo pip3.4 install xlrd to use the Python 3.4, see docs here https://docs.python.org/3/whatsnew/3.4.html#bootstrapping-pip-by-default

Post a Comment for "Python 3.4 Pip Install"