常见错误

常见错误#

  1. ModuleNotFoundError: No module named ‘_curses’

pip install windows-curses
  1. ModuleNotFoundError: No module named ‘fcntl’

使用 blessed 替代 blessings

pip uninstall blessings
pip install blessed
  1. You indicated pty=True, but your platform doesn’t support the ‘pty’ module!

conda install pywinpty
  1. jupyter 中文乱码设置编码格式 避免控制台输出的解决

!chcp 65001
!echo 中文

chcp 可以解决此问题。