Skip to content

Commit

Permalink
Merge branch 'update_setup_deps'
Browse files Browse the repository at this point in the history
  • Loading branch information
fdamken committed Oct 3, 2023
2 parents a4dc9d0 + 1645b0b commit fa00845
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,11 @@
resources_dir = osp.join(dependency_dir, "resources")

# Global cmake prefix path
cmake_prefix_path = [
cmake_prefix_path = []
conda_prefix = os.getenv("CONDA_PREFIX")
if conda_prefix:
# Anaconda env root directory
os.environ["CONDA_PREFIX"]
]
cmake_prefix_path.append(conda_prefix)

# Required packages
required_packages = [
Expand Down

0 comments on commit fa00845

Please sign in to comment.