본문 바로가기
Linux 리눅스/우분투

pip install dryscrape - error: [Errno 2] No such file or directory: 'src/webkit_server 해결하기

by 프즈 2020. 12. 3.
반응형

파이썬 크롤링하면서 dryscrape 사용해보려고 했어요

pip install dryscrape

명령어를 했더니 설치하는 과정에서 아래처럼 오류가 나더니 설치가 안되더라고요

 

  ERROR: Command errored out with exit status 1:
   command: /home/suung/src/get_study_audio/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-7ei3hnnu/webkit-server/setup.py'"'"'; __file__='"'"'/tmp/pip-install-7ei3hnnu/webkit-server/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-rq84onuw
       cwd: /tmp/pip-install-7ei3hnnu/webkit-server/
  Complete output (4 lines):
  running bdist_wheel
  running build
  sh: 1: qmake: not found
  error: [Errno 2] No such file or directory: 'src/webkit_server'
  ----------------------------------------
  ERROR: Failed building wheel for webkit-server

 

libqt5webkit5-dev 이 설치되어 있어야 했어요

 

우분투 버전이 낮다면 libqtwebkit-dev 설치해야 합니다

 

결국 아래 명령어로 설치하고 나서 pip 명령어를 다시 하니까 잘 됩니다

 

sudo apt install libqt5webkit5-dev

pip install dryscrape

 

반응형

댓글