We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
👋 team, thanks for an awesome library. Is it supposed to work on Collab? I'm having difficulties making a small demo.
Describe the bug
After mk.gui.start(api_port=2024, frontend_port=8010) iframe fails to load on attempt to show the dataframe.
mk.gui.start(api_port=2024, frontend_port=8010)
To Reproduce Steps and code snippet that reproduce the behavior:
import os import io import meerkat as mk import numpy as np import pandas as pd samples = io.StringIO(r""" {"X":"a","Y":"b","Z": 1} """) df = mk.from_json(samples, lines=True) mk.gui.start(api_port=2024, frontend_port=8010) df
localhost refused to connect.
But !curl 127.0.0.1:8010 returns the HTLM.
!curl 127.0.0.1:8010
Changing the name in run_frontend to 127.0.0.1 didn't change the outcome (127.0.0.1 refused to connect.)
run_frontend
127.0.0.1
127.0.0.1 refused to connect.
Expected behavior See a dataframe table.
System Information
Would appreciate any pointers for getting a demo up and running on Colab. Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
👋 team, thanks for an awesome library.
Is it supposed to work on Collab? I'm having difficulties making a small demo.
Describe the bug
After
mk.gui.start(api_port=2024, frontend_port=8010)
iframe fails to load on attempt to show the dataframe.To Reproduce
Steps and code snippet that reproduce the behavior:
Only
localhost refused to connect.
But
!curl 127.0.0.1:8010
returns the HTLM.Changing the name in
run_frontend
to127.0.0.1
didn't change the outcome (127.0.0.1 refused to connect.
)Expected behavior
See a dataframe table.
System Information
Would appreciate any pointers for getting a demo up and running on Colab.
Thanks!
The text was updated successfully, but these errors were encountered: