web-dev-qa-db-fra.com

Comment installer textract en python3

Sudo python3 -m pip install textract
Sudo apt-get install textract
pip install textract
Sudo apt-get install swig

Je veux installer textract dans python3 mais ce n'est pas installer correctement, cela donne l'erreur suivante.

x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/Android -I/usr/include/python2.7 -c swig/sphinxbase/ad_wrap.c -o build/temp.linux-x86_64-2.7/swig/sphinxbase/ad_wrap.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare -Wno-misleading-indentation
  x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DSPHINXBASE_EXPORTS -DPOCKETSPHINX_EXPORTS -DSPHINX_DLL -DHAVE_CONFIG_H -Ideps/sphinxbase/include -Ideps/sphinxbase/include/sphinxbase -Ideps/sphinxbase/include/Android -I/usr/include/python2.7 -c deps/sphinxbase/src/libsphinxad/ad_Pulse.c -o build/temp.linux-x86_64-2.7/deps/sphinxbase/src/libsphinxad/ad_Pulse.o -Wno-unused-label -Wno-strict-prototypes -Wno-parentheses -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-result -Wno-sign-compare -Wno-misleading-indentation
  deps/sphinxbase/src/libsphinxad/ad_Pulse.c:44:30: fatal error: Pulse/pulseaudio.h: No such file or directory
  compilation terminated.
  error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
3
Jay Pratap Pandey

Suivez ces étapes:

  1. Téléchargez le fichier source pour textract à partir de: https://pypi.python.org/pypi/textract

  2. pip3 installe pdfminer3k

  3. décompresser le fichier téléchargé

  4. cd dans le répertoire

  5. lancer: installation python3.py

Cela a fonctionné pour moi :)

4
Brenda

Vous devrez d'abord installer le libpulse-dev dans Ubuntu ou le pulseaudio-libs-devel dans Fedora.

  • Si vous êtes dans Ubuntu, essayez Sudo apt-get install libpulse-dev
  • Si vous êtes dans Fedora, essayez Sudo dnf install pulseaudio-libs-devel

Au moins ça marche pour moi.

2

Commencez par installer pip dans conda. python -m pip install --upgrade pip

puis installez textract, pip install textract

0
Amey P Naik