I can this specific error while download nltk - python

import nltk
nltk.download('punkt')
showing error:
[nltk_data] Error loading punkt: <urlopen error [WinError 10060] A
[nltk_data] connection attempt failed because the connected party
[nltk_data] did not properly respond after a period of time, or
[nltk_data] established connection failed because connected host
[nltk_data] has failed to respond>
I have pip installed nltk and tried downloading the full nltk version for my learning.
# I used this key to download full version
import nltk
nltk.download()
showing the error: WinError 10060

Changing the network to another wifi connection worked for me. The previous connection had some sort of blockers for me. Hope this helps.

Related

g2p library not importing

I am getting the following error when I am trying to import from g2p_en import G2p a server.
[nltk_data] Error loading averaged_perceptron_tagger: <urlopen error
[nltk_data] [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify
[nltk_data] failed: EE certificate key too weak (_ssl.c:1131)>
[nltk_data] Error loading cmudict: <urlopen error [SSL:
[nltk_data] CERTIFICATE_VERIFY_FAILED] certificate verify failed:
[nltk_data] EE certificate key too weak (_ssl.c:1131)>
I am installed this module by the command pip install g2p_en. I am not getting what is causing the error as the same thing seems to run fine in the Jupyter notebook of my local machine but gives me the above error in a server.

Python 3.9 NLTK Error Loading <urlopen error [SSL] unknown error (_ssl.c:1129)>

Python version: 3.9.12
nltk version: 3.8.1
OS: Windows
import nltk
nltk.download('stopwords')
Executing the above code results in below error
[nltk_data] Error loading all: <urlopen error [SSL] unknown error [nltk_data] (_ssl.c:1129)>

Pip shows web socket error and I cannot install any packages

I tried installing django but didn't work. Instead it gave me this error...
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [WinError 10013] An attempt was made to access a socket in a way forbidden by its access permissions')': /simple/django/
ERROR: Could not find a version that satisfies the requirement django (from versions: none)
ERROR: No matching distribution found for django
I tried to install other packages and modules but none of them could be installed. I reinstalled python and while doing that I lose all my previous packages. I had a project with PyQt5 which I could install successfully two weeks ago but after I reinstalled python my packages, modules, etc. where gone and now pip won't work I don't know why.
I tried changing my network and tried using my phone's hotspot but it didnt solve the problem. I tried giving the version name of the packages but that didn't work either.
My network doesn't have a proxy or is not connected to a vpn. I can download any other stuff but I just cannot download stuff with pip.
Thanks in advance!

Can't install anything with Conda

I keep getting the following error when I try to install or update modules with Conda. Any help?
I install using the following commands (basically any installation or upgrade command):
conda install tensorflow
conda install numpy
And this is the error message:
Fetching package metadata ... CondaHTTPError: HTTP 000 CONNECTION
FAILED for url
Elapsed: -
An HTTP error occurred when trying to retrieve this URL. HTTP errors
are often intermittent, and a simple retry will get you on your way.
ConnectionError(MaxRetryError("HTTPSConnectionPool(host='pypi.python.org',
port= 443): Max retries exceeded with url:
/simple/win-64/repodata.json (Caused by New
ConnectionError(': Failed to establish a new connection: [Errno
11004] getaddrinfo fail ed',))",),)
Also pip is not able to install any modules either. It keeps saying:
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection : [Errno 11004] getaddrinfo failed',)': /simple/tensorflow/
My guess is you installed Anaconda on a work computer behind a firewall. I had the same issues after installing it on my work laptop too, but no problems at all with the installation on my personal laptop at home. Please see this answer for setting up a .condarc config file in your home directory which is typically c:\users[your user id].
The answer addresses both config entries for proxy servers and ssl verification.
https://stackoverflow.com/a/54621792/5745815

Error while installing TextBlob

I am trying to install TextBlob. As per the official doc, i did this.
> pip install -U textblob
> python -m textblob.download_corpora
The pip command is doing its job. But the other command is giving following error.
[nltk_data] Error loading brown: HTTP Error 405: Not allowed.
[nltk_data] Error loading punkt: HTTP Error 405: Not allowed.
[nltk_data] Error loading wordnet: HTTP Error 405: Not allowed.
[nltk_data] Error loading averaged_perceptron_tagger: HTTP Error 405:
[nltk_data] Not allowed. [nltk_data] Error loading conll2000: HTTP
Error 405: Not allowed. [nltk_data] Error loading movie_reviews: HTTP
Error 405: Not allowed. Finished.
Any help is appreciated. Thank you.
I tried installing textblob last day and it was giving an error. Then I tried other NLP module called nltk. But yesterday somehow it wasn't working for both of them. It was saying error 405 : not allowed. I looked for other posts but could not find anything.
When I tried today, surprisingly it started downloading the submodules. I think it was the server - githubusercontent issue from where it was trying to download the data from.
I am not sure if you'd face such errors but if you do, just try after sometime and hope it works for you too.
python -m textblob.download_corpora
import nltk
nltk.download()

Categories