Skip to content

Troubleshooting

Jennings Zhang edited this page Jan 26, 2022 · 1 revision
chris_plugin_info is finding modules which don’t exist

After changing setup.py, it is necessary to delete stale intermediate files.

find -type d -name '*.egg-info' | xargs rm -r

# reinstall from scratch
deactivate
rm -r venv
python -m venv venv
source venv/bin/activate
pip install -e .
Clone this wiki locally