Skip to content

Commit

Permalink
docs(flink): update conda-based installation guide (#8238)
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman authored Feb 6, 2024
1 parent 2d3297f commit f2ef90a
Showing 1 changed file with 4 additions and 17 deletions.
21 changes: 4 additions & 17 deletions docs/_tabsets/install.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -56,23 +56,10 @@ for installer in installers:
print(f"## {backend_name}")
print()
if backend_name == "Flink":
if installer_name == "pip":
print("Install alongside the `apache-flink` package:")
print()
print(f"```bash\npip install ibis-framework apache-flink\n```")
else:
print(
dedent(
"""\
::: {.callout-important}
## PyFlink is not available on conda-forge; please
use `pip` to install the PyFlink backend instead.
:::"""
)
)
continue
if backend_name == "Flink" and installer_name == "pip":
print("Install alongside the `apache-flink` package:")
print()
print(f"```bash\npip install ibis-framework apache-flink\n```")
else:
extra = backend.get("extra", mod)
Expand Down

0 comments on commit f2ef90a

Please sign in to comment.