Python 各類庫的安裝(持續更新)

2022-05-22 05:24:07 字數 1172 閱讀 2091

一、beautifulsoup

說明:www.crummy.com:beautiful soup 3只能在python2.x版本中執行,而beautiful soup 4還可以在python3.x版本中執行.beautiful soup 4速度更快,特性更多,而且與第三方的文件解析庫(如lxml和html5lib)協同工作。

方法1、在cmd視窗下,輸入:

> pip install beautifulsoup4

>python setup.py install

安裝完成後,在idle中輸入:

>>>from bs4 import beautifulsoup

即可使用。

注意:beautifulsoup中b和s的大寫。

二、urllib2

python 3.x版本不需要安裝urllib2,urllib和urllib2包集合成在乙個包,且為自帶,原urllib2內容在urllib.request庫中呼叫 。呼叫按如下規則:

import

urllib.request

resp = urllib.request.urlopen("

";)

、 pillow,即pil

在cmd視窗下,輸入:

> pip install pillow

執行:

from pil import image

、 xlrd

> pip install xlrd

import xlrd

五、scipy

1、安裝numpy;

2、安裝wheel;pip install wheel

5、安裝完成後,可輸入:python,然後輸入:import scipy檢查是否安裝成功。

六、pytesseract

cmd:

pip install pytesseract

七、tesseract-ocr

docker 安裝各類應用 持續更新

sudo docker run d name nginx1 nginx sudo mkdir p data nginx sudo docker cp nginx1 etc nginx data nginx conf sudo docker cp nginx1 usr share nginx html...

幾種常用的排序(持續更)

arr 待排陣列 bucket 空桶 0 1 2 3 4 5 6 7 8 9 桶編號 陣列 bucket 的角標 include int main int bucket 10 初始化陣列,空桶 for i 0 i 5 i for int i 0 i 10 i return 0 氣泡排序在一組需要排序...

DL的tricks總結(持續更)

一 普通分類任務的經典tricks 1 模型優化方面 sgd,adam,rmsprop 2 資料層面的增強方法 3 learning rate的更新策略 4 損失函式優化 5 正則化 6 batchnorm 二 目標檢測訓練優化tricks bag of freebies for training ...