Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在调试模式下运行 faust worker ( https://faust.readthedocs.io )。此刻我这样做了:
如您所见,这不是实际的调试。我期望这个:
你能说我做错了什么吗?
您必须像这样进行 Python 运行配置才能在 PyCharm 中正确使用调试:
该文件(在本例中为 toy_example.py)应提供一个入口点:
if __name__ == '__main__': print("Application getting started") app.main()