Hello
I successfully installed xlrd by: pip3 install --user xlrd but in the console started python3 manage.py shell when I do import xlrd I get the error: no module named xlrd
thanks
Hello
I successfully installed xlrd by: pip3 install --user xlrd but in the console started python3 manage.py shell when I do import xlrd I get the error: no module named xlrd
thanks
Oh, good catch! Thanks for reporting that, we have a bug. pip3
goes to Python 3.3, and python3
goes to Python 3.4. I don't know how we managed to get that wrong.
If you use full version names for the commands (eg. pip3.3
and python3.3
, or pip3.4
and python3.4
) then everything should work.
I'll log this as a high-priority bug. Sorry for the confusion!
Thank you Giles
No problem, and sorry again for the confusion.
It doens't work for me now.
I installed pandas but it didn't install its dependencies
When try to download openpyxl or xlrd it says already satisfied but when i send request it gives no module error
Make sure that you are installing and running in the same envronment (Python version/virtualenv). If you install with pip then it is installed in Python 2.7 and if you install with pip3.6 it is installed for Python 3.6.
I got already satisfied error in both cases
I solved that by uploading package by myself and unzipping it in site_packages folder
Thank you for your help.