Skip to content

Commit

Permalink
fix incorrect bash syntax (#3033)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-cortes-intel authored Jan 2, 2025
1 parent 964a443 commit ece13b7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,12 @@ Then, install the necessary dependencies from the appropriate channels with `con

```shell
conda install -y \
-c https://software.repos.intel.com/python/conda/ \ `# Intel's repository`
-c conda-forge \ `# conda-forge, for tools like 'make'`
make python>=3.9 \ `# used by the build system`
dpcpp-cpp-rt dpcpp_linux-64 intel-sycl-rt \ `# Intel compiler packages`
tbb tbb-devel \ `# required TBB packages`
mkl mkl-devel mkl-static mkl-dpcpp mkl-devel-dpcpp \ `# required MKL packages`
-c https://software.repos.intel.com/python/conda/ `# Intel's repository` \
-c conda-forge `# for tools like 'make'` \
make python>=3.9 `# used by the build system` \
dpcpp-cpp-rt dpcpp_linux-64 intel-sycl-rt `# Intel compiler packages` \
tbb tbb-devel `# required TBB packages` \
mkl mkl-devel mkl-static mkl-dpcpp mkl-devel-dpcpp `# required MKL packages` \
cmake `# required to build the examples only`
```

Expand Down

0 comments on commit ece13b7

Please sign in to comment.