Skip to content
Home » Raspberry Pi » RASPBIAN ERROR – soupsieve requires Python 3.5 but the running Python is 2.7.16 [SOLVED]

RASPBIAN ERROR – soupsieve requires Python 3.5 but the running Python is 2.7.16 [SOLVED]

When running

pip install bs4

you receive this error

soupsieve requires Python ‘>=3.5’ but the running Python is 2.7.16

To fix the error run

pip3 install bs4

That’s it