使用PyCharm編譯python常見錯誤

2021-09-30 16:50:45 字數 482 閱讀 2364

1】bs4.featurenotfound: couldn』t find a tree builder with the features you requested: html_parser. do you need to install a parser library?處理

1:修改bs4的版本

2:修改語法   

html = beautifulsoup(res, 'lxml')   修改為  html = beautifulsoup(res, 'html.parser')
2】modulenotfounderror: no module named 'openpyxl'

開啟file=》settings=》project:tsc=》project interperter   滑鼠雙擊pip的哪一行 在彈出框的最上方填入 openpyxl   【 no module named '缺少的配件'   收搜這個 named後面''中的名字 】   然後 安裝

如何在mac版pycharm選擇python版本

pycharm選擇python版本 1.開啟專案設定 pycharm preference 2.在開啟的頁面中,選擇project選項,project後面的名字就是開啟的當前專案名,如下圖所示 3.選擇project interpreterwww.cppcns.com,如果下拉列表中沒有需要的版本,...

pycharm使用伺服器編譯 pycharm上傳

記錄一下自己在使用pycharm和docker路上的一些坑 在pycharm中使用伺服器的python編譯器還是很簡單的 以pycharm2019.2.為例,系統為ubuntu18.04 點選file setting project project interpreter 點選project int...

pycharm工具使用

檔案編碼是utf 8,同時在檔案頭新增 coding utf 8 檔案中所有的字串前都加u,如 u 中文 在輸入 抓取某些utf 8 gbk的網頁 輸出 輸出到網頁 終端 的時候,要記住python內部是用unicode儲存的 所有輸入要先decode,變成unicode,輸出時要encode變成想...