久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<legend id='OtYZg'><style id='OtYZg'><dir id='OtYZg'><q id='OtYZg'></q></dir></style></legend>

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

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

      • <bdo id='OtYZg'></bdo><ul id='OtYZg'></ul>

        不支持直通,GL 被禁用

        Passthrough is not supported, GL is disabled(不支持直通,GL 被禁用)
          <bdo id='8XtWQ'></bdo><ul id='8XtWQ'></ul>

              <tfoot id='8XtWQ'></tfoot>
                <tbody id='8XtWQ'></tbody>
            1. <legend id='8XtWQ'><style id='8XtWQ'><dir id='8XtWQ'><q id='8XtWQ'></q></dir></style></legend>
              • <i id='8XtWQ'><tr id='8XtWQ'><dt id='8XtWQ'><q id='8XtWQ'><span id='8XtWQ'><b id='8XtWQ'><form id='8XtWQ'><ins id='8XtWQ'></ins><ul id='8XtWQ'></ul><sub id='8XtWQ'></sub></form><legend id='8XtWQ'></legend><bdo id='8XtWQ'><pre id='8XtWQ'><center id='8XtWQ'></center></pre></bdo></b><th id='8XtWQ'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='8XtWQ'><tfoot id='8XtWQ'></tfoot><dl id='8XtWQ'><fieldset id='8XtWQ'></fieldset></dl></div>

                <small id='8XtWQ'></small><noframes id='8XtWQ'>

                  本文介紹了不支持直通,GL 被禁用的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!

                  問(wèn)題描述

                  我嘗試使用 selenium 和 webdriver_manager.chrome 抓取特定網(wǎng)站,而我的代碼完全抓取了該網(wǎng)站的元素.但是爬取后,控制臺(tái)窗口出現(xiàn)如下錯(cuò)誤信息.

                  I tried crawling a specific site using selenium and webdriver_manager.chrome, and my code crawled elements of that site totally. But after crawling, the following error message appears in the console window.

                  ERROR:gpu_init.cc(426) Passthrough is not supported, GL is disabled

                  當(dāng)我第一次找到它時(shí),我取消了 chrome 的硬件硬件加速也沒(méi)有解決問(wèn)題.

                  When I first found it, I unchecked Hardware hardware accleration of chrome also it didn't solve the problem.

                  推薦答案

                  測(cè)試環(huán)境

                  Windows 操作系統(tǒng),Chromedriver 版本 89,無(wú)頭模式

                  Windows OS, Chromedriver vesion 89, headless mode

                  解決方案

                  我不確定這是否可以解決您的問(wèn)題,因?yàn)殄e(cuò)誤消息略有不同.

                  I am not certain that this can be a solution for your question, since the error message is slightly different.

                  我沒(méi)記錯(cuò),錯(cuò)誤消息 Passthrough is not supported, GL is swiftshader 在 Chromedriver 版本 89 之后顯示為錯(cuò)誤(但不確定)[1].

                  As I remember correctly, the error message Passthrough is not supported, GL is swiftshader has been shown after the Chromedriver version 89 as a bug (but not certain) [1].

                  在 Windows 的情況下,需要 --headless--disable-gpu 選項(xiàng)以使 chromedriver 以無(wú)頭模式工作 [2].由于錯(cuò)誤 [3],Linux 似乎也需要 --disable-gpu.

                  In case of Windows, --headless and --disable-gpu options are required to make the chromedriver work as a headless mode [2]. It seems like --disable-gpu is also required for Linux because of the bug [3].

                  1. 如果同時(shí)刪除 --headless--disable-gpu 選項(xiàng),則不會(huì)出現(xiàn)錯(cuò)誤消息.但是,chromedriver 不再作為無(wú)頭模式工作.

                  1. The error message does not appear if both --headless and --disable-gpu options are removed. However, the chromedriver does not work as a headless mode anymore.

                  在我的情況下,錯(cuò)誤消息不會(huì)影響無(wú)頭 chrome 的操作.正如我發(fā)現(xiàn)的那樣,通常情況下,Chrome 會(huì)在沒(méi)有 GPU 的情況下恢復(fù)工作.但是,為了獲得一致的結(jié)果,遙測(cè)需要 GPU [4]."

                  In my case, the error message does not affect the operation of a headless chrome. As I found, "Normally, Chrome would just fall back to work without GPU. However, for consistent results, Telemetry requires the presence of GPU [4]."

                  我還應(yīng)用了 --disable-software-rasterizer 選項(xiàng)來(lái)禁用 WebGL [5].無(wú)頭操作下不再顯示錯(cuò)誤信息.

                  I've additionally applied --disable-software-rasterizer option to disable WebGL [5]. The error message does not show anymore under the headless operation.

                  參考文獻(xiàn)

                  [1] https://reddit.com/r/chrome/comments/n6qywt/hardware_acceleration_fail_in_chrome_on_linux/
                  [2] https://developers.google.com/web/updates/2017/04/headless-chrome
                  [3] https://bugs.chromium.org/p/chromium/問(wèn)題/詳細(xì)信息?id=737678
                  [4] https://groups.google.com/a/chromium.org/g/telemetry/c/bEgV1EH63eA
                  [5] https://bugs.chromium.org/p/chromium/問(wèn)題/詳細(xì)信息?id=617551

                  這篇關(guān)于不支持直通,GL 被禁用的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來(lái)源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問(wèn)題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請(qǐng)聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  How to make a discord bot that gives roles in Python?(如何制作一個(gè)在 Python 中提供角色的不和諧機(jī)器人?)
                  Discord bot isn#39;t responding to commands(Discord 機(jī)器人沒(méi)有響應(yīng)命令)
                  Can you Get the quot;About mequot; feature on Discord bot#39;s? (Discord.py)(你能得到“關(guān)于我嗎?Discord 機(jī)器人的功能?(不和諧.py))
                  message.channel.id Discord PY(message.channel.id Discord PY)
                  How do I host my discord.py bot on heroku?(如何在 heroku 上托管我的 discord.py 機(jī)器人?)
                  discord.py - Automaticaly Change an Role Color(discord.py - 自動(dòng)更改角色顏色)
                  • <bdo id='cnF2Q'></bdo><ul id='cnF2Q'></ul>
                      <legend id='cnF2Q'><style id='cnF2Q'><dir id='cnF2Q'><q id='cnF2Q'></q></dir></style></legend>
                        <tfoot id='cnF2Q'></tfoot>
                      • <i id='cnF2Q'><tr id='cnF2Q'><dt id='cnF2Q'><q id='cnF2Q'><span id='cnF2Q'><b id='cnF2Q'><form id='cnF2Q'><ins id='cnF2Q'></ins><ul id='cnF2Q'></ul><sub id='cnF2Q'></sub></form><legend id='cnF2Q'></legend><bdo id='cnF2Q'><pre id='cnF2Q'><center id='cnF2Q'></center></pre></bdo></b><th id='cnF2Q'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='cnF2Q'><tfoot id='cnF2Q'></tfoot><dl id='cnF2Q'><fieldset id='cnF2Q'></fieldset></dl></div>

                          <tbody id='cnF2Q'></tbody>

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

                          1. 主站蜘蛛池模板: 久草在线青青草 | 羞羞的视频在线看 | 成人精品久久日伦片大全免费 | 久久综合九色综合欧美狠狠 | 亚洲第一天堂无码专区 | 亚洲成人网在线观看 | 99福利| 亚洲精品乱码久久久久久按摩 | 欧美日韩福利视频 | av手机免费在线观看 | 日韩国产在线 | 色99视频 | 精品区| 亚洲一区成人 | 中文精品视频 | 日韩精品1区2区3区 国产精品国产成人国产三级 | 午夜丁香视频在线观看 | 日韩精品一区二区三区 | 欧美精品久久久久久久久老牛影院 | 日韩精品视频在线播放 | 国产精品99久久久久久宅男 | 日韩视频在线一区 | 黄色成人免费在线观看 | 欧美一区二区大片 | 亚洲中午字幕 | 成人在线激情 | 久久久网 | 国产精品视频综合 | 精品一区二区久久久久久久网精 | 亚洲1区 | 欧美一级在线 | 日韩在线免费播放 | 成人精品视频在线观看 | 久久久精 | www.久久久久久久久 | 91免费在线播放 | 久久久久91 | 91n成人| 青青草在线视频免费观看 | 黄色网址在线免费观看 | 欧美精品日韩精品国产精品 |