Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DLL load failed: module not found #2

Open
gauravjain2 opened this issue Jun 5, 2020 · 1 comment
Open

DLL load failed: module not found #2

gauravjain2 opened this issue Jun 5, 2020 · 1 comment

Comments

@gauravjain2
Copy link

After doing pip install ggsipu-result
tried to run the following code:
from ggsipu_result import iter_pages, has_page_results, iter_results FILE="2015_032_B.TECH(CSE)_DECLARE_RESULT_DEC2019.pdf" results = [] for page in iter_pages(FILE): if has_page_results(page): results = results + [r for r in iter_results(page) if r.batch == 2018] results.sort(key=lambda x: x.cgpa, reverse=True) for i, result in enumerate(results[:-1]): print("{i}. {r}".format(i=i+1, r= result))

the following error came:

Traceback (most recent call last):
File "abc.py", line 1, in
from ggsipu_result import iter_pages, has_page_results, iter_results
File "C:\Users\JAIN\AppData\Local\Programs\Python\Python37\lib\site-packages\ggsipu_result_init_.py", line 1, in
from pyxpdf import xpdf
File "C:\Users\JAIN\AppData\Local\Programs\Python\Python37\lib\site-packages\pyxpdf_init_.py", line 3, in
from pyxpdf.xpdf import (
ImportError: DLL load failed: The specified module could not be found.

@ashutoshvarma
Copy link
Owner

Unfortunately I cannot reproduce this in my machine.

Looks like PATH environment variable issue to me.
Can you share your PATH env value?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants