Either compile all pyc
files or automatically remove them
#431
Labels
needs-decision
Undecided if this should be done
pyc
files or automatically remove them
#431
I have a situation with pixi where the missing pyc compilation is a problem and finally debugged it.
When updating the lockfile for
jupyterlab
(with pixi) it installsisoduration
. When reinstalling the old lockfile later it removesisoduration
but leaves thepyc
files as well as the folder structure (since thepyc
files are not deleted).Now, when starting jupyterlab the
import isoduration
still "works" (doesn't throw anImportError
) but when accessing any object in it it fails with anAttributeError
, e.g.:Then I usually do a
rm -rf
of the.pixi
folder but it would be much nicer if we never run into this error.The text was updated successfully, but these errors were encountered: