application run after installing typer-cli #147
-
... I do not know what exactly is missing... Is something related to ref an argument parameter. It has a default defined as documentation (classig parameter with default val, using = atfer its list in function parameters). Running the application with |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I ran into this also. installing Please see: #125 I was running pip uninstall typer-cli
pip install --upgrade typer This puts back typer 0.9.0. Then, you can get the typer-cli back via: pip install --no-deps typer-cli and run the doc generation and it should probably work. That said, that's a pretty yucky workaround, so I don't recommend it. |
Beta Was this translation helpful? Give feedback.
-
Hello! Now Typer-CLI is part of Typer, since version 0.12.1, so now you can just install You can try with the latest version and see if that solves it. If not, please create a new question following all the steps, including a simple example I can copy-paste to debug your use case: https://github.com/tiangolo/typer/discussions/new?category=questions |
Beta Was this translation helpful? Give feedback.
Hello! Now Typer-CLI is part of Typer, since version 0.12.1, so now you can just install
pip install typer
and you get thetyper
command. 🚀You can try with the latest version and see if that solves it.
If not, please create a new question following all the steps, including a simple example I can copy-paste to debug your use case: https://github.com/tiangolo/typer/discussions/new?category=questions