diff --git a/python/scripts/mkvenv.py b/python/scripts/mkvenv.py index f102527c4d..619215490a 100644 --- a/python/scripts/mkvenv.py +++ b/python/scripts/mkvenv.py @@ -671,7 +671,7 @@ def pip_install( if not online: full_args += ["--no-index"] if wheels_dir: - full_args += ["--find-links", f"file://{str(wheels_dir)}"] + full_args += ["--find-links", str(wheels_dir)] full_args += list(args) subprocess.run( full_args,