You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While running this code, even though I ran this code pip install -U arxiv pypdf, I am still getting,
raise ImportError("`arxiv` not installed. Please install using `pip install arxiv`")
ImportError: `arxiv` not installed. Please install using `pip install arxiv`
The text was updated successfully, but these errors were encountered:
Hi @samyogdhital Please make sure that your venv is setup correctly. Did you run the setup script? scripts/create_venv.sh
Also be sure to source the venv after creation. Let me know if you are still stuck after doing this.
@willemcdejongh Thanks for this info. As you said, this seems to work when you clone the repo and run create_venv.sh/.bat but when you directly just have a arxiv.py file and do pip install under virtual environment, this error seems to appear.
I see other examples works well without needing to clone main project, but this seems to be problem with this particular example.
@samyogdhital seems like the file name arxiv.py might be colliding with the package name arxiv which might be causing the issue. Can you try again by changing the name of the file?
https://docs.phidata.com/tools/arxiv#arxiv
While running this code, even though I ran this code
pip install -U arxiv pypdf
, I am still getting,The text was updated successfully, but these errors were encountered: