Yash
Yash

Reputation: 31

unable a install pyspellcheck module on Linux(Raspbian)

so I am working on Linux(Raspbian) and I am unable to install the pyspellcheck module.

so previously I managed to install it by just

pip install pyspellcheck

but recently I had to factory reset my machine and I am not able to install pyspellcheck anymore. I get the following error:

ERROR: Could not find a version that satisfies the requirement pyspellcheck (from versions: none)
ERROR: No matching distribution found for pyspellcheck

so I would just like to know how can I install it on my machine

NOTE:I am working on a Linux machine

Upvotes: 1

Views: 108

Answers (1)

phd
phd

Reputation: 94483

There is no such a package at PyPI: https://pypi.org/project/pyspellcheck/ — error 404. What are you trying to install? Do you want pyspellchecker?

pip install pyspellchecker

Upvotes: 0

Related Questions