Cem
Cem

Reputation: 27

What does ‘ ERROR: No .egg-info directory found in tmp/pi p-pip-egg-info-kt94jnak’ mean?

I tried installing clipboard on the Pyto IOS app and got the error. Is there any way to fix this problem?

Upvotes: 0

Views: 8525

Answers (1)

Asi
Asi

Reputation: 170

According to different responses, the error usually is because setuptools is not installed or updated. Install it:

python3 -m pip install --upgrade pip setuptools wheel

Seen in these responses:

If is not solved, are you installing this? I would try installing the required libraries separately:

  • The only requeriment for that library seems to be pyperclip. Try to install it first.

Upvotes: 0

Related Questions