Skip to content

Commit

Permalink
add hint
Browse files Browse the repository at this point in the history
  • Loading branch information
panh99 committed Nov 22, 2024
1 parent 700f985 commit b16b680
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/py/flwr/cli/new/new.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,14 @@ def new(
_add = " huggingface-cli login\n" if llm_challenge_str else ""
print(
typer.style(
f" cd {package_name}\n" + " pip install -e .\n" + _add + " flwr run\n",
f" cd {package_name}\n" + " pip install -e .",
fg=typer.colors.BRIGHT_CYAN,
bold=True,
)
),
typer.style("# Optional if dependencies are installed\n", dim=True),
typer.style(
_add + " flwr run\n",
fg=typer.colors.BRIGHT_CYAN,
bold=True,
),
)

0 comments on commit b16b680

Please sign in to comment.