I cannot install python threading library on my Windows 7

34,101

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.

Share:
34,101
Helena
Author by

Helena

Updated on December 30, 2020

Comments

  • Helena
    Helena over 3 years

    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