From 63bf5b2a5fdbb7d3ac8bd04646ffc17509d3013a Mon Sep 17 00:00:00 2001 From: suntengxu Date: Fri, 7 Jan 2022 18:04:37 +0800 Subject: [PATCH] fix: typo --- Convert/convert.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()