0
Why do i get error and how to fix it?
3 Answers
+ 3
Lenoname on repl.it you use the UI to add packages, or you can also edit the pypackages.toml file in your project folder, which lists the dependencies.
https://docs.replit.com/programming-ide/installing-packages
+ 2
The module is not installed so you can't import.
On sololearn you can use this code snippet:
import os
os.system("pip -q install beautifulsoup4 ")
Now you can import BeautifulSoup. You can ignore the warning.
0
Denise RoĆberg Iām on replit