diff --git a/infra/platforms/baseline.py b/infra/platforms/baseline.py index b1f03ef4b..5aff959cb 100644 --- a/infra/platforms/baseline.py +++ b/infra/platforms/baseline.py @@ -20,7 +20,8 @@ default_start_seed = 1 def install_herbie(install_dir: Path): - subprocess.run(['raco', 'pkg', 'remove', 'avx-herbie', 'fdlibm-herbie', 'vdt-herbie']) + # TODO: Don't know if this will work or not + subprocess.run(['raco', 'pkg', 'remove', '--force', 'avx-herbie', 'fdlibm-herbie', 'vdt-herbie']) subprocess.run(['git', 'clone', '--branch', 'v2.0.2', 'https://github.com/herbie-fp/herbie', install_dir]) subprocess.run(['make', 'install'], cwd=install_dir)