diff --git a/Convert/convert.py b/Convert/convert.py index 1d63e2e..2bcc15b 100644 --- a/Convert/convert.py +++ b/Convert/convert.py @@ -10,7 +10,7 @@ assert coremltools.__version__ == COREMLTOOLS_SUPPORTED_VERSION, \ f"Please install coremltools version {COREMLTOOLS_SUPPORTED_VERSION}: " + \ - f"`python3 -m pip uninstall coremltools && python3 -m pip install coremltools==={COREMLTOOLS_SUPPORTED_VERSION}`\n" + \ + f"`python3 -m pip uninstall coremltools && python3 -m pip install coremltools=={COREMLTOOLS_SUPPORTED_VERSION}`\n" + \ f"current version: {coremltools.__version__}" from coremltools.converters.mil.mil import Builder as mb @@ -170,4 +170,4 @@ def main(): convert(args.output) if __name__ == "__main__": - main() \ No newline at end of file + main()