Skip to content Skip to sidebar Skip to footer

Python 3.1 - Error While Adding A Library In Blender

For this problem (stackoverflow.com/questions/4086435/), I tried to make a Python 3 version of the library python-websocket (github.com/mtah/python-websocket/), here is my code: ht

Solution 1:

It looks like you called your script websocket.py, so the import of websocket finds the script itself, instead of the installed module by that name. Rename the script to something else (and if it created a websocket.pyc file, delete that.)


Post a Comment for "Python 3.1 - Error While Adding A Library In Blender"