web-dev-qa-db-ja.com

Python3にTextractをインストールする方法

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

Textractをpython3にインストールしたいのですが、適切にインストールできません。次のエラーが表示されます。

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
6

次の手順を実行します:

  1. Textractのソースファイルを以下からダウンロードします。 https://pypi.python.org/pypi/textract

  2. pip3インストールpdfminer3k

  3. ダウンロードしたファイルを解凍します

  4. ディレクトリに移動します

  5. 実行:python3 setup.py install

7
bkira

まずlibpulse-devをUbuntuに、またはpulseaudio-libs-develをFedoraにインストールする必要があります。

  • Ubuntuを使用している場合は、Sudo apt-get install libpulse-devをお試しください
  • Fedoraを使用している場合は、Sudo dnf install pulseaudio-libs-develをお試しください

少なくともこれでうまくいきます。

5

次のコマンドを使用してインストールできます。

pip install git+https://github.com/deanmalmgren/textract.git
0
Yashi Aggarwal

最初にcondaにpipをインストールします。 python -m pip install --upgrade pip

次に、textractをインストールします。pip install textract

0
Amey P Naik