Fix ModuleNotFoundError: No module named ‘socks’ Error – Python Tutorial

By | August 28, 2019

When you are developing network application using python, you may find this error: ModuleNotFoundError: No module named ‘socks’. In this tutorial, we will introduce you how to fix this error.

Install python library

pip install pysocks

Then when you import socks library, this error is fixed.

pip install pysocks

Leave a Reply