Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I cannot install python threading library on my Windows 7

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

Here is the error I am getting

enter image description here

like image 547
Helena Avatar asked Dec 15 '22 14:12

Helena


1 Answers

The error is complaining that it can't find this lib, which makes sense. Because this threading is already in python's standard library, You don't need to manually install it.

Just try:

import threading

It should work fine.

like image 148
skyline75489 Avatar answered Dec 17 '22 04:12

skyline75489