amalrajan / learncpp-download

Multi-threaded web scraper to download all the tutorials from www.learncpp.com and convert them to PDF files concurrently.
GNU Affero General Public License v3.0
69 stars 18 forks source link

Showing progress 99.7% but does not download anything #44

Open dnyaneshwar1991 opened 12 months ago

dnyaneshwar1991 commented 12 months ago

I have followed all the given steps but still unable to download:

python3 main.py 2023-11-21 19:18:56,214 INFO worker.py:1636 -- Started a local Ray instance. [============================================================] 99.7% ...

marcelofern commented 12 months ago

same here.

marcelofern commented 12 months ago

it seems to be because of the missing dependency:wkhtmltopdf.

Perhaps we can fix this so that the error is explicit. I suppose that a lack of dependency should culminate on a non-silent failure.

dnyaneshwar1991 commented 11 months ago

In my case wkhtmltopdf dependency is already satisfied

z4rathustr4 commented 10 months ago

Look here for wkhtmltopdf, install it with apt install wkhtmltopdf and use --sequential when invoking python main.py Works for me on LMDE 6. Hope it helps.

dnyaneshwar1991 commented 10 months ago

Thanks for sharing