我有一个使用python 2.7的conda env。 Cython随版本0.29.6一起安装。
我试图在Jupyter上使用Cython魔术:
%%cython
cimport numpy as np
返回警告Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release!
警告看起来很清楚。但是我不知道在哪里可以设置language_level。
我需要进入站点包并手动更改任何内容吗?
谢谢
J
答案 0 :(得分:1)
只要找出我可以使用-2或-3来定义版本
%%cython -2