Skip to content Skip to sidebar Skip to footer

Python : Nameerror: Name 'standarderror' Is Not Defined

I'm currently developing a website with the SST - Web Test Framework (i'm very beginner) but I have a problem with python I used this Link: https://pypi.python.org/pypi/sst/0.2.2 I

Solution 1:

sst only supports Python 2 even though pip will let you install it for Python 3. The error NameError: name 'StandardError' is not defined is from sst trying to use the built in exception StandardError which was removed in Python 3. To resolve this, you can either use a different module (which I would recommend) or downgrade to Python 2.7.


Post a Comment for "Python : Nameerror: Name 'standarderror' Is Not Defined"