When we are coding python code, we typically use packages and modules that we import. For example, when we are coding we may write:
import numpy
import requests
from bs4 import BeautifulSoup
When we are trying to integrate python with html with Pyscript (https://pyscript.net/), it just says that it doesn’t have the package installed. However, when this happens in normal python we use PiP and import it from there. However, what should we do when we need a package in Pyscript?
Thank you!
<py-env>
which defines what modules can be used. If I tried to use non-existing module then I saw it error that it can't find it onhttps://pypi.org
(and probably it loads modules directly from this server). And as I expected some modules may not work because they may use C/C++ libraries. – Billat