【BUG回顧】 在學習Python爬蟲時,運Pycharm中的文件出現了這樣的報錯: bs4.FeatureNotFound: Couldn’t find a tree builder with the features you requested: lxml. 也就是說lxml用不了,因此使用An ...
【BUG回顧】
在學習Python爬蟲時,運Pycharm中的文件出現了這樣的報錯:
bs4.FeatureNotFound: Couldn’t find a tree builder with the features you requested: lxml.
也就是說lxml用不了,因此使用Anaconda Prompt打算安裝一下。
結果執行pip install lxml時告知已經安裝過了,但是運行還是一樣的報錯。
【解決方案】
原因是電腦安裝了Anaconda3(python3.7),lxml庫是4.2.5,在Pycharm(社區,2018.3)版中老是不支持lxml。
解決方案:先用pip uninstall lxml卸載,再用pip install lxml安裝,然後成功了。
這麼雷人的事情,趕緊記下來以便幫助其他人也少走彎路。