Skip to content

Commit 55cd128

Browse files
authored
fix pip install for aqua extension (#1281)
1 parent 2c3e7dd commit 55cd128

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ads/aqua/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,5 @@ def install():
111111
wheel_file_path = os.environ.get(
112112
"AQUA_EXTENSTION_PATH", "/ads/extension/adsjupyterlab_aqua_extension*.whl"
113113
)
114-
status = subprocess.run(f"pip install {wheel_file_path}", shell=True, check=False)
114+
status = subprocess.run(f"pip install {wheel_file_path} --no-deps", shell=True, check=False)
115115
return status.check_returncode

0 commit comments

Comments
 (0)