I want to use following tool to download paper from arxiv
https://github.com/pvskand/arXiv_download
I installed it by pip
1 |
pip install arXiv_download |
When trying to run python arXiv
, following error happened.
1 2 3 4 5 |
Traceback (most recent call last): File "arXiv", line 22, in <module> import feedparser ImportError: No module named feedparser |
Install feedparser using pip
1 |
pip install feedparser |
Run python arXiv
again, the issue is fixed