0

Recently, I am trying to install PyDictionary on my IDE (I am using Mac). However, when I typed "pip3 install PyDictionary" to my terminal, an error occurred as in the following picture.

Error.

I also tried to install setuptools by typing in "pip3 install setuptools", but it showed that the requirement is already satisfied. Nevertheless, according to my terminal, it said "No module named 'setuptools'", which to me, is contradicting. Sorry if this is a silly question since I am only a middle school student.

Dolfinwu
  • 262
  • 1
  • 14
  • Does this answer your question? [Python 3: ImportError "No Module named Setuptools"](https://stackoverflow.com/questions/14426491/python-3-importerror-no-module-named-setuptools) – Bastien B Dec 06 '21 at 10:37

1 Answers1

0

you can verify the installation of the PyDictionary by using:

pip list

and the meaning of "requirement is already satisfied" is that the setuptools is already installed.

Faizawa
  • 88
  • 8
  • Yeah thanks, but what I am trying to ask is why does it say "No module named 'setuptools'" if I already have it installed? – Dolfinwu Dec 06 '21 at 09:49