I'm using a Fedora distribution and working with python 3.6.
While importing both nltk
and sklearn
it says I'm missing said 2 modules (respectively). I tried fixing it by first downloading these modules using:
sudo yum install sqlite-devel
and
sudo yum install bzip2-devel
but got the following errors (respectively)
Error downloading packages:
sqlite-devel-3.7.17-8.el7.x86_64: [Errno 5] [Errno 2] No such file or directory
Error downloading packages:
bzip2-devel-1.0.6-13.el7.x86_64: [Errno 5] [Errno 2] No such file or directory
What exactly do I need to do in order to install these modules? I tried sniffing around Google and SO but couldn't find a resolution that worked for me.
Please help!
Edit: I understand that I need to re-compile python after installing said packages (not that I know how to re-compile it) but I can't even download these packages.