anaconda

Spyder的第一次使用

不用安装,anaconda自带软件。

闪退

打开spyder时闪退_南栀_w的博客-CSDN博客

spyder闪退原因之一是如pyzmq 之类的包缺少或版本不匹配,卸载重新安装即可。

conda uninstall pyzmq
# or pip uninstall pyzmq
conda install pyzmq

另一类原因是spyder 自身在Windows平台上和python配合有bug,需要手动添加代码。找到使用的python环境的 ,anaconda下为安装路径,lib\\site-packages\\path-to-python\\lib\\site-packages\\tornado\\platform\\[asyncio.py](<http://asyncio.py/>) ,在程序下图位置(import之后)添加代码.

import sys
 
if sys.platform == 'win32':
  asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())

之后在命令行实例化spyder

spyder --new-instance

设置Preferences

Tools→Preferences→Application→Advanced settings→Language

Tools→Preferences→Applicatio→Interface→Screen resolution→ Enable auto high DPI scaling

Preferences-----IPython console-----Graphics-----Backend