Process finished with exit code -1073740791 (0xC0000409) pycharm error
问题 I am trying to use fastText with PyCharm. Whenever I run below code: import fastText model=fastText.train_unsupervised("data_parsed.txt") model.save_model("model") The process exits with this error: Process finished with exit code -1073740791 (0xC0000409) What causes this error and what can be done to avoid it? 回答1: Are you using a windows system? 0xC0000409 means stack buffer overflow as seen in this windows help link. Below is some advice that is taken from this link to solve similar type