You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I tried to run python ScrapedIn.py and I receive:
Traceback (most recent call last):
File "ScrapedIn.py", line 22, in <module>
from thready import threaded
ModuleNotFoundError: No module named 'thready'
So I try to install it through pip install threaded and it works:
Traceback (most recent call last):
File "ScrapedIn.py", line 22, in <module>
from thready import threaded
ModuleNotFoundError: No module named 'thready'
There must be some problem with that library
The text was updated successfully, but these errors were encountered:
This issue is still present. Fix is to replace future==3.2.2 with the current latest supported python3 library: future==3.0.5 in the requirements.txt file.
Didn't seem worthy of a PR, but figured this would help people in the meantime until a fix was merged.
I just tried to run
sudo pip install -r requirements.txt
and this is the result:So I tried to run
python ScrapedIn.py
and I receive:So I try to install it through
pip install threaded
and it works:I now try again
python ScrapedIn.py
and I have:There must be some problem with that library
The text was updated successfully, but these errors were encountered: