-
Get this error trying to run module. Seems to happen no matter what. Maybe changes since Python>3.5 based on this project's error? https://gitlab.kitware.com/vtk/vtk/-/merge_requests/6177 $ typer name_of_my_module run Versions: Python 3.6.9 (default, Jul 17 2020, 12:50:27) Requirement already up-to-date: typer in /usr/local/lib/python3.6/dist-packages (0.3.2) Collecting typer-cli |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
Also facing this issue. |
Beta Was this translation helpful? Give feedback.
-
I'm using |
Beta Was this translation helpful? Give feedback.
-
I think this issue has been fixed in the python standard library: https://bugs.python.org/issue42131 |
Beta Was this translation helpful? Give feedback.
-
You can reduce the version of the package "Markdown". I also meet this problem, then I uninstall "Markdown" which is 3.5 and reinstall a new one which is 3.1. |
Beta Was this translation helpful? Give feedback.
-
Hello, now Typer-CLI is part of Typer, since version 0.12.1, so you just need to install So, any question would now be in the Typer repo. If you still have problems, please create a new question discussion following all the steps, with an example I can copy paste to replicate it: https://github.com/tiangolo/typer/discussions/new?category=questions Thanks! |
Beta Was this translation helpful? Give feedback.
Hello, now Typer-CLI is part of Typer, since version 0.12.1, so you just need to install
pip install typer
and you get thetyper
command. 🚀So, any question would now be in the Typer repo. If you still have problems, please create a new question discussion following all the steps, with an example I can copy paste to replicate it: https://github.com/tiangolo/typer/discussions/new?category=questions
Thanks!