-3

Today I updated to pip 21.1.1, I installed opencv and tqdm libraries I didn't have problems, but later when I tried to install traceback gives me this error:

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

This is a image of what happened

N o b o d y
  • 11
  • 1
  • 5
  • I think https://stackoverflow.com/questions/32302379/could-not-find-a-version-that-satisfies-the-requirement-package should help. – mostlycryptic May 16 '21 at 00:29

2 Answers2

2
  1. traceback is not available on pip, and if you search for it on PyPi, the closest thing you find is traceback2, "a backport of traceback to older supported Pythons."
  2. This is because the traceback module is part of the Python standard library
Lucas Ng
  • 671
  • 4
  • 11
  • That solves a lot of questions, but why i dont have traceback in my python installed libraries?, the same happend to me with shutil – JoacoMonsalvo May 16 '21 at 00:35
  • Everyone should have the standard library (that's kinda the point), so maybe something is wrong with yours. What specifically are you typing, and what error do you get? – Lucas Ng May 16 '21 at 00:40
  • I was only trying to import traceback library, but when i run the programm, give me the error that traceback library is not installed – JoacoMonsalvo May 16 '21 at 01:20
  • @JoacoMonsalvo I think you should reinstall Python. – enzo May 16 '21 at 02:00
-1

there isn't a traceback module, that's why

N o b o d y
  • 11
  • 1
  • 5