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
When I merely import pdbox, and initiate the PDFBox() function,
it immediately throws an error message as following. Please help
urllib.error.URLError: <urlopen error [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connection host has failed to respond>
The text was updated successfully, but these errors were encountered:
Looks a network connectivity issue. Is your computer connected to the Internet through a corporate firewall? If you start a python3 session on your Windows box, does the following code run without any exception?
You can try setting the environmental variable http_proxy or https_proxy (depending on the protocol) to the URI of your proxy before importing pdfbox.
Another possibility is to set the user agent to that of a common web browser, as some firewalls block HTTP requests that do not appear to come from the latter; try the following code and see whether it throws an error:
When I merely import pdbox, and initiate the PDFBox() function,
it immediately throws an error message as following. Please help
The text was updated successfully, but these errors were encountered: