I need to install dryscrape for python but I got error, what\'s the problem?
C:\\Users\\parvij\\Anaconda3\\Scripts>pip install dryscrape
I g
Need to install http://www.qt.io. Also, The 5.6+ version of Qt removes the Qt WebKit module in favor of the new module Qt WebEngine. So far, webkit-server has not been ported to WebEngine (and likely won't be in the near future), so Qt <= 5.5 is a requirement.
Download webkit-server from github
git clone https://github.com/niklasb/webkit-server.git webkit-server
Change in webkit-server/setup.py :
shutil.copy('src/webkit_server', self.build_purelib)
shutil.copy('src/webkit_server', self.build_platlib)
to
shutil.copy('src/webkit_server.pro', self.build_purelib)
shutil.copy('src/webkit_server.pro', self.build_platlib)
then
cd webkit-server
python setup.py install
There you go.
From the doc, you have to installed also requirements. You can do this as follow
pip install -r requirements.txt
After this retry to install dryscrape.
Need do install qt4
and libqtwebkit-dev
for compile webkit-server
, then follow the steps of @Erwan Clügairtz
sudo apt install libqtwebkit-dev qt4