You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the report! The message occurs in pyodide.loadPackage (which is used internally by micropip). When calling pyodide.loadPackage directly, you can pass the messageCallback parameter, but there is currently no way to do so in micropip.install.
I think the correct behavior is that setting pyodide.setStdout should also change the stream that pyodide.loadPackage outputs, so this is a bug.
For now, you can suppress the message by re-defining console.log
When I do
micropip.install(module)
I get messages about the dependencies that are being pulled with it.E.g.,:
will print this to console:
I have tried surrounding the call to
install
with a no-op stdout function, i.e.:but this doesn't change anything.
How can I suppress these messages?
The text was updated successfully, but these errors were encountered: