I have installed textract, python-docx, docx using pip.
pip install textract
The packages were successfully installed. I was able to see them when I execute pip list
But when I try to import these packages it shows an import error suggesting that the module does not exist.
import textract
Traceback (most recent call last):
File "", line 1, in
ImportError: No module named textract
I am using a Linux system. What exactly is the issue and how can I start solving it?