I cant install python thread library on my windows 7

I have successfully installed pip on my computer and other libraries using the command "pip install" library name. I got all the libraries I need for my project except for "threading"! I couldn't find anything on the internet about this and asked others and no one could help. Any help appreciate it. I have Python 2.7.9 version.

Here is the error I am getting

enter image description here

+3


source to share


1 answer


The error is that it cannot find this library, which makes sense. Since this one is threading

already in the python standard library, it doesn't need to be manually installed.

Just try:



import threading

      

It should work fine.

+6


source







All Articles