The Buienradar plugin now has an issue with the 'requests' library which means that when you installed 'toonapilib' pip may have updated 'requests' to a version that is incompatible.
Have you tried going into Python at the command line and importing requests to check it is valid?
The reasonable man adapts himself to the world; the unreasonable one persists to adapt the world to himself. Therefore all progress depends on the unreasonable man. George Bernard Shaw
The Buienradar plugin now has an issue with the 'requests' library which means that when you installed 'toonapilib' pip may have updated 'requests' to a version that is incompatible.
Have you tried going into Python at the command line and importing requests to check it is valid?
I don't know how to do this, I have the feeling that there is sometime wrong with Python or Pip itself
The Buienradar plugin now has an issue with the 'requests' library which means that when you installed 'toonapilib' pip may have updated 'requests' to a version that is incompatible.
Have you tried going into Python at the command line and importing requests to check it is valid?
I don't know how to do this, I have the feeling that there is sometime wrong with Python or Pip itself
Go into a Linux Terminal
- type python
- a >> prompt will appear
- type import requests
Now check if it does not throw you an error.
- type exit() or <ctrl> D = this exits the Python session
:~ $ python
Could not find platform independent libraries <prefix>
Could not find platform dependent libraries <exec_prefix>
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
ImportError: No module named site
The reasonable man adapts himself to the world; the unreasonable one persists to adapt the world to himself. Therefore all progress depends on the unreasonable man. George Bernard Shaw
Dnpwwo wrote: ↑Tuesday 30 July 2019 23:16
@RduPre,
Doesn't look good
Can you try 'python3' '? That might work
Python 3.5.3 (default, Sep 27 2018, 17:25:39)
[GCC 6.3.0 20170516] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import requests
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'requests'
>>>
The reasonable man adapts himself to the world; the unreasonable one persists to adapt the world to himself. Therefore all progress depends on the unreasonable man. George Bernard Shaw