#Uninstall
Uninstalling removes the installed Make Markdown Library Python package. It does not delete any Markdown libraries, manifests, indexes, or source documents you created.
#Windows
Open PowerShell and run:
py -m pip uninstall make-markdown-libraryPip will ask for confirmation. Type y and press Enter.
Check that it has gone:
py -m make_markdown_library --versionIf Windows says the module cannot be found, the uninstall worked.
#macOS or Linux
Run:
python3 -m pip uninstall make-markdown-libraryConfirm with y when pip asks.
#If you installed LiteParse separately
Make Markdown Library does not automatically uninstall optional converter packages that you installed separately.
To remove LiteParse as well, run:
py -m pip uninstall liteparseOn macOS or Linux, run:
python3 -m pip uninstall liteparse#What uninstall does not delete
Uninstall does not delete:
- source folders;
- generated
markdown-library.mdfiles; - manifest files;
- JSON/YAML index files;
- individual Markdown output folders;
- downloaded wheel files in Downloads.
You can delete downloaded installer files manually after installation or uninstallation.
#Reinstalling later
Download the installer again from Download Make Markdown Library, then install it:
py -m pip install --user "$env:USERPROFILE\Downloads\make_markdown_library-0.4.0-py3-none-any.whl"If the filename has a newer version number, use that filename instead.