• <i id='uFyC6'><tr id='uFyC6'><dt id='uFyC6'><q id='uFyC6'><span id='uFyC6'><b id='uFyC6'><form id='uFyC6'><ins id='uFyC6'></ins><ul id='uFyC6'></ul><sub id='uFyC6'></sub></form><legend id='uFyC6'></legend><bdo id='uFyC6'><pre id='uFyC6'><center id='uFyC6'></center></pre></bdo></b><th id='uFyC6'></th></span></q></dt></tr></i><div id='uFyC6'><tfoot id='uFyC6'></tfoot><dl id='uFyC6'><fieldset id='uFyC6'></fieldset></dl></div>
  • <small id='uFyC6'></small><noframes id='uFyC6'>

        <tfoot id='uFyC6'></tfoot>
        <legend id='uFyC6'><style id='uFyC6'><dir id='uFyC6'><q id='uFyC6'></q></dir></style></legend>
          <bdo id='uFyC6'></bdo><ul id='uFyC6'></ul>

        pip install dryscrape 失败并出现“错误:[Errno 2] 没有

        时间:2023-09-13
        • <small id='tDMCl'></small><noframes id='tDMCl'>

            <tbody id='tDMCl'></tbody>
        • <legend id='tDMCl'><style id='tDMCl'><dir id='tDMCl'><q id='tDMCl'></q></dir></style></legend>

          • <i id='tDMCl'><tr id='tDMCl'><dt id='tDMCl'><q id='tDMCl'><span id='tDMCl'><b id='tDMCl'><form id='tDMCl'><ins id='tDMCl'></ins><ul id='tDMCl'></ul><sub id='tDMCl'></sub></form><legend id='tDMCl'></legend><bdo id='tDMCl'><pre id='tDMCl'><center id='tDMCl'></center></pre></bdo></b><th id='tDMCl'></th></span></q></dt></tr></i><div id='tDMCl'><tfoot id='tDMCl'></tfoot><dl id='tDMCl'><fieldset id='tDMCl'></fieldset></dl></div>
            1. <tfoot id='tDMCl'></tfoot>
                <bdo id='tDMCl'></bdo><ul id='tDMCl'></ul>

                1. 本文介绍了pip install dryscrape 失败并出现“错误:[Errno 2] 没有这样的文件或目录:'src/webkit_server'"?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我需要为 python 安装dryscrape,但出现错误,请问是什么问题?

                  I need to install dryscrape for python but I got error, what's the problem?

                  C:UsersparvijAnaconda3Scripts>pip install dryscrape
                  

                  我知道了:

                  Collecting dryscrape
                  Collecting webkit-server>=1.0 (from dryscrape)
                    Using cached webkit-server-1.0.tar.gz
                  Collecting xvfbwrapper (from dryscrape)
                  Requirement already satisfied (use --upgrade to upgrade): lxml in c:usersparvijanaconda3libsite-packages (from dryscrape)
                  Building wheels for collected packages: webkit-server
                    Running setup.py bdist_wheel for webkit-server ... error
                    Complete output from command c:usersparvijanaconda3python.exe -u -c"import setuptools,tokenize;__file__='C:\Users\parvij\AppData\Local\Temp\pip-build-o7nlv0dz\webkit-server\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('
                  ', '
                  '), __file__, 'exec'))" bdist_wheel -d C:UsersparvijAppDataLocalTemp	mp71w59qv6pip-wheel- --python-tag cp35:
                    running bdist_wheel
                    running build
                    'make' is not recognized as an internal or external command,
                    operable program or batch file.
                    error: [Errno 2] No such file or directory: 'src/webkit_server'
                  
                    ----------------------------------------
                    Failed building wheel for webkit-server
                    Running setup.py clean for webkit-server
                  Failed to build webkit-server
                  Installing collected packages: webkit-server, xvfbwrapper, dryscrape
                    Running setup.py install for webkit-server ... error
                      Complete output from command c:usersparvijanaconda3python.exe -u -c"import setuptools,tokenize;__file__='C:\Users\parvij\AppData\Local\Temp\pip-build-o7nlv0dz\webkit-server\setup.py';exec(compile(getattr(tokenize, 'open',open)(__file__).read().replace('
                  ', '
                  '), __file__, 'exec'))" install --record C:UsersparvijAppDataLocalTemppip-tyzalid7-recordinstall-record.txt --single-version-externally-managed --compile:
                      running install
                      running build
                      'make' is not recognized as an internal or external command,
                      operable program or batch file.
                      error: [Errno 2] No such file or directory: 'src/webkit_server'
                  
                      ----------------------------------------
                  Command "c:usersparvijanaconda3python.exe -u -c "import setuptools, tokenize;__file__='C:\Users\parvij\AppData\Local\Temp\pip-build-o7nlv0dz\webkit-server\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('
                  ', '
                  '), __file__, 'exec'))" install --record C:UsersparvijAppDataLocalTemppip-tyzalid7-recordinstall-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:UsersparvijAppDataLocalTemppip-build-o7nlv0dzwebkit-server
                  

                  我的操作系统是 windows 8

                  my operating system is windows 8

                  我的python版本是3.5

                  my python version is 3.5

                  推荐答案

                  从github下载webkit-server

                  Download webkit-server from github

                  git clone https://github.com/niklasb/webkit-server.git webkit-server
                  

                  webkit-server/setup.py 的变化:

                  Change in webkit-server/setup.py :

                  shutil.copy('src/webkit_server', self.build_purelib)
                  shutil.copy('src/webkit_server', self.build_platlib)
                  

                  shutil.copy('src/webkit_server.pro', self.build_purelib)
                  shutil.copy('src/webkit_server.pro', self.build_platlib)
                  

                  然后

                  cd webkit-server
                  python setup.py install
                  

                  你去.

                  这篇关于pip install dryscrape 失败并出现“错误:[Errno 2] 没有这样的文件或目录:'src/webkit_server'"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何在 Windows 上安装 .egg Python 包(尝试使用 easy 下一篇:类属性和实例属性有什么区别?

                  相关文章

                  最新文章

                  <small id='oPyVQ'></small><noframes id='oPyVQ'>

                2. <legend id='oPyVQ'><style id='oPyVQ'><dir id='oPyVQ'><q id='oPyVQ'></q></dir></style></legend>

                  <i id='oPyVQ'><tr id='oPyVQ'><dt id='oPyVQ'><q id='oPyVQ'><span id='oPyVQ'><b id='oPyVQ'><form id='oPyVQ'><ins id='oPyVQ'></ins><ul id='oPyVQ'></ul><sub id='oPyVQ'></sub></form><legend id='oPyVQ'></legend><bdo id='oPyVQ'><pre id='oPyVQ'><center id='oPyVQ'></center></pre></bdo></b><th id='oPyVQ'></th></span></q></dt></tr></i><div id='oPyVQ'><tfoot id='oPyVQ'></tfoot><dl id='oPyVQ'><fieldset id='oPyVQ'></fieldset></dl></div>

                    <tfoot id='oPyVQ'></tfoot>
                    • <bdo id='oPyVQ'></bdo><ul id='oPyVQ'></ul>