Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyasMoutawwakil committed Sep 4, 2024
1 parent f996973 commit 1b66595
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/install_quantization_libs.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def install_autoawq_from_source():
kernels_setup_file_path = os.path.join(kernels_repo_path, "setup.py")
process_setup_file(kernels_setup_file_path)
subprocess.run(
f"cd {kernels_repo_path} && {sys.executable} -m pip install --no-build-isolation -e .",
f"cd {kernels_repo_path} && {sys.executable} -m pip install .",
shell=True,
check=True,
env=os.environ,
Expand Down Expand Up @@ -78,7 +78,7 @@ def install_autogptq_from_source():
autogptq_setup_file_path = os.path.join(autogptq_repo_path, "setup.py")
process_setup_file(autogptq_setup_file_path)
subprocess.run(
f"cd {autogptq_repo_path} && {sys.executable} -m pip install -vvv --no-build-isolation .",
f"cd {autogptq_repo_path} && {sys.executable} -m pip install .",
shell=True,
check=True,
env=os.environ,
Expand Down

0 comments on commit 1b66595

Please sign in to comment.