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?

asked Jan 3, 2021 at 18:55
1
  • 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 Commented Jan 4, 2021 at 12:48

1 Answer 1

1

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

answered Jan 3, 2021 at 19:09
Sign up to request clarification or add additional context in comments.

2 Comments

Please specify what exactly isn't working, like your error message.
error es show below is: checking for PSPELL support... yes, shared configure: error: Cannot find pspell , when you run build in circleci

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.