-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
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
从pypi安装之后,启动有bug #232
Comments
可惜启动后还是使用不了一点,创建项目时就失败了,我试试换个系统看看 |
不需要修改这个代码,就是一堆库的依赖版本有问题,根据这个issues解决即可。 pip install uvicorn==0.14 --no-deps 非常坑 |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 7 days if no further activity occurs. Thank you for your contributions. |
非常有用,感谢! |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 7 days if no further activity occurs. Thank you for your contributions. |
lib\site-packages\paddlelabel_main_.py
中的代码不对
connexion_app.run(host=configs.host, port=configs.port, debug=configs.debug)
应该改成:
并且还需要安装库:pip install --upgrade connexion uvicorn 等
The text was updated successfully, but these errors were encountered: