常见错误#
ModuleNotFoundError: No module named ‘_curses’
pip install windows-curses
ModuleNotFoundError: No module named ‘fcntl’
使用 blessed
替代 blessings
:
pip uninstall blessings
pip install blessed
You indicated pty=True, but your platform doesn’t support the ‘pty’ module!
conda install pywinpty
jupyter
中文乱码设置编码格式 避免控制台输出的解决
!chcp 65001
!echo 中文
chcp
可以解决此问题。