You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe add cython<3 as a requirement. Anyway, I fixed my notebook by installing an older version, 0.29.37, of cython:
FIX:
# check current cython version without importing:cython_major_version= !python3-c'import cython;print(cython.__version__[0])'# if 3 or later, install older:ifint(cython_major_version[0]) >=3:
!pip3installcython'<3'# check if genalog is installed, if not checkout and installtry:
importgenalogexceptImportError:
!test-egenalog||gitclonehttps://github.com/microsoft/genalog.git
!cdgenalog; python3setup.pyinstall
The text was updated successfully, but these errors were encountered:
Google Colab currently packs Cython 3, which doesn't compile the required
pandas
well:ERROR:
see also this pandas issue
Maybe add
cython<3
as a requirement. Anyway, I fixed my notebook by installing an older version,0.29.37
, of cython:FIX:
The text was updated successfully, but these errors were encountered: