Hello,
I’m using seafile server on Ubuntu 22.04.
The cffi library version installed is 1.15.0.
When I try to start seahub (./seahub srart), it not start.
I found that the cffi library version needed is 1.14.0 to start.
I chaned the version tested in “./seafile-server-latest/seahub/thirdpart/cffi/init.py” on lines 8 and 9 :
version = “1.15.0”
version_info = (1, 15, 0)
Now I can start seahub.
D.