I just pip a package 'ckeditor' . It contains two site-package 'ckeditor' and 'js_asset'. But somehow, the in the 'js_asset' init.py file
import contextlib
with contextlib.suppress(ImportError):
from js_asset.js import * # noqa: F403
It shows js_asset coundn't be found....
Then I start a django project and pip 'ckeditor'. And it works perfectly. I have no idea how it happen and how to fix it.