Home Assistant Core problem scrape

Can someone tell me if scrape runs on the home assistant core platform?
Integration is running and is listed in the integration overview.
However, I’m not sure if it works in the core at all.
Attached is the error log, unfortunately I can’t do anything with this.

Logger: homeassistant.components.sensor
Source: components/scrape/sensor.py:128
Integration: Sensor (documentation, issues)
First occurred: 20:43:38 (1 occurrences)
Last logged: 20:43:38

scrape: Error on device update!
Traceback (most recent call last):
File “/volume1/@appstore/homeassistant/env/lib/python3.8/site-packages/homeassistant/helpers/entity_platform.py”, line 431, in _async_add_entity
await entity.async_device_update(warning=False)
File “/volume1/@appstore/homeassistant/env/lib/python3.8/site-packages/homeassistant/helpers/entity.py”, line 633, in async_device_update
await task
File “/volume1/@appstore/homeassistant/env/lib/python3.8/site-packages/homeassistant/components/scrape/sensor.py”, line 139, in async_update
await self._async_update_from_rest_data()
File “/volume1/@appstore/homeassistant/env/lib/python3.8/site-packages/homeassistant/components/scrape/sensor.py”, line 152, in _async_update_from_rest_data
value = await self.hass.async_add_executor_job(self._extract_value)
File “/var/packages/python38/target/lib/python3.8/concurrent/futures/thread.py”, line 57, in run
result = self.fn(*self.args, **self.kwargs)
File “/volume1/@appstore/homeassistant/env/lib/python3.8/site-packages/homeassistant/components/scrape/sensor.py”, line 128, in _extract_value
tag = raw_data.select(self._select)[self._index]
File “/volume1/@appstore/homeassistant/env/lib/python3.8/site-packages/bs4/element.py”, line 1865, in select
raise NotImplementedError(
NotImplementedError: Cannot execute CSS selectors because the soupsieve package is not installed.

I mean - that’s the error.
You have to add the package.

pip install soupsieve

sorry for my dume question but how do i install this?
i can’t find anything about it?

root@NAS216:/volume1/@appstore# pip install soupsieve
-ash: pip: command not found
root@NAS216:/volume1/@appstore# pip install soupsieve
-ash: pip: command not found
root@NAS216:/volume1/@appstore# pip install beautifulsoup4
-ash: pip: command not found
root@NAS216:/volume1/@appstore#

Try using pip3.

Yeah - you probably should have mentioned that you installed it on a NAS - someone else will need to come along and tell you how to install it on there. I assumed it was just a normal Linux install…