I downloaded a Python package from the pure_python branch of the mistree repository using:
pip install git+https://github.com/knaidoo29/mistree.git@pure_python
The package is installed with a different name (mistree_pp
), but I want to rename it to mistree
across the entire project. This includes renaming the directory and updating all the import statements that currently use mistree_pp
to mistree
.
How can I achieve this easily, without manually changing all the names and paths in the codebase?
I’m using Windows 11, but cross-platform solutions are welcome.
6