Hi all,
Newbie here! I'm trying to set up BotQueue on a Raspberry Pi 3B V1.2. I'm following the instructions at the help site as closely as possible.
The wheezy image for the pi was not available, so instead I'm using a rasbian buster with desktop version that was released in June 2019.
I've followed the instructions up until step 3. When I run "bumblebee", I get the following:
pi@raspberrypi:~ $ screen -dR botqueue bumblebee
b/home/pi/.local/lib/python2.7/site-packages/bs4/element.py:16: UserWarning: The soupsieve package is not installed. CSS selectors cannot be used.
'The soupsieve package is not installed. CSS selectors cannot be used.'
From searching about the soupsieve package, I've tried using "pip install soupsieve" and "pip install beautifulsoup4" which both return that they are already installed:
pi@raspberrypi:~ $ pip install soupsieve
Requirement already satisfied: soupsieve in ./.local/lib/python2.7/site-packages (1.9.2)
Requirement already satisfied: backports.functools-lru-cache; python_version < "3" in ./.local/lib/python2.7/site-packages (from soupsieve) (1.5)
pi@raspberrypi:~ $ pip install beautifulsoup4
Requirement already satisfied: beautifulsoup4 in ./.local/lib/python2.7/site-packages (4.7.1)
Requirement already satisfied: soupsieve>=1.2 in ./.local/lib/python2.7/site-packages (from beautifulsoup4) (1.9.2)
Requirement already satisfied: backports.functools-lru-cache; python_version < "3" in ./.local/lib/python2.7/site-packages (from soupsieve>=1.2->beautifulsoup4) (1.5)
What am I missing here?
Thanks in advance,
Amiee