1

Well I get this error on CircleCI: checking for PSPELL support... yes, shared configure: error: Cannot find pspell

when I run this step: - run: sudo docker-php-ext-install pspell I check online and find the solución but only for yum yum install aspell-devel How I make this done with apt?

CutePotato
  • 191
  • 1
  • 8
  • Circleci config.yml version: 2.1 jobs: build: docker: - image: circleci/php:7.4-node-browsers-legacy working_directory: xxxx steps: - checkout - add_ssh_keys: fingerprints: - "xxxx" - run: sudo docker-php-ext-install pspell - run: sudo composer self-update - run: git clone xxxx - run: cd xxxx - run: composer install – CutePotato Jan 04 '21 at 12:48

1 Answers1

1

I think the package is just named differently under apt. Try apt install libaspell-dev ? (got the name from apt search aspell)