Update 060_INSTALL_PATCHMATCH.md (#3591)

installing the package 'blas' is needed in Archlinux, otherwise
patchmatch fails initializing with a "libblas.so.3 missing" error.
This commit is contained in:
Lincoln Stein
2023-06-28 15:40:45 -04:00
committed by GitHub

View File

@ -87,18 +87,18 @@ Prior to installing PyPatchMatch, you need to take the following steps:
sudo pacman -S --needed base-devel sudo pacman -S --needed base-devel
``` ```
2. Install `opencv`: 2. Install `opencv` and `blas`:
```sh ```sh
sudo pacman -S opencv sudo pacman -S opencv blas
``` ```
or for CUDA support or for CUDA support
```sh ```sh
sudo pacman -S opencv-cuda sudo pacman -S opencv-cuda blas
``` ```
3. Fix the naming of the `opencv` package configuration file: 3. Fix the naming of the `opencv` package configuration file:
```sh ```sh