Python使用pip安裝pySerial串口通訊模塊
pySerial封裝了對串口的訪問,供大家參考,具體內容如下
特性
在支持的平臺上有統(tǒng)一的接口。
通過python屬性訪問串口設置。
支持不同的字節(jié)大小、停止位、校驗位和流控設置。
可以有或者沒有接收超時。
類似文件的API,例如read和write,也支持readline等。
支持二進制傳輸,沒有null消除,沒有cr-lf轉換。
有關Python的環(huán)境配置請參考: 《Python入門》Windows 7下Python Web開發(fā)環(huán)境搭建筆記
而 pip 是隨 Python 一同安裝的,如下圖:
pip 幫助信息,在命令行中輸入 pip 就能看到以下的幫助信息
G:\>pip Usage: pip <command> [options] Commands: install Install packages. uninstall Uninstall packages. freeze Output installed packages in requirements format. list List installed packages. show Show information about installed packages. search Search PyPI for packages. wheel Build wheels from your requirements. help Show help for commands. General Options: -h, --help Show help. --isolated Run pip in an isolated mode, ignoring environment variables and user configuration. -v, --verbose Give more output. Option is additive, and can be used up to 3 times. -V, --version Show version and exit. -q, --quiet Give less output. --log <path> Path to a verbose appending log. --proxy <proxy> Specify a proxy in the form [user:passwd@]proxy.server:port. --retries <retries> Maximum number of retries each connection should attempt (default 5 times). --timeout <sec> Set the socket timeout (default 15 seconds). --exists-action <action> Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup. --trusted-host <hostname> Mark this host as trusted, even though it does not have valid or any HTTPS. --cert <path> Path to alternate CA bundle. --client-cert <path> Path to SSL client certificate, a single file containing the private key and the certificate in PEM format. --cache-dir <dir> Store the cache data in <dir>. --no-cache-dir Disable the cache. --disable-pip-version-check Don't periodically check PyPI to determine whether a new version of pip is available for download. Implied with --no-index.
安裝 pySerial 串口通訊模塊
使用 pip 來安裝非常簡單,只需使用以下命令:pip install pyserial。
安裝時可能會出現(xiàn)以下提示:
可以按照提示執(zhí)行升級 pip:pip install --upgrade pip
也可以不升級 pip,我上面的圖是已經安裝過了。沒有安裝的話會如下圖顯示:
有時候會出現(xiàn)類似下圖的網絡錯誤:
重新執(zhí)行一遍就可以了
卸載可使用命令:pip uninstall pyserial
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
Python?OpenCV超詳細講解透視變換的實現(xiàn)
OpenCV用C++語言編寫,它具有C?++,Python,Java和MATLAB接口,并支持Windows,Linux,Android和Mac?OS,OpenCV主要傾向于實時視覺應用,并在可用時利用MMX和SSE指令,本篇文章帶你通過OpenCV實現(xiàn)透視變換2022-04-04python通過安裝itchat包實現(xiàn)微信自動回復收到的春節(jié)祝福
這篇文章主要介紹了python通過安裝itchat包實現(xiàn)微信自動回復收到的春節(jié)祝福,本文通過實例代碼給大家介紹的非常詳細,具有一定的參考借鑒價值,需要的朋友參考下吧2020-01-01不到40行代碼用Python實現(xiàn)一個簡單的推薦系統(tǒng)
這篇文章主要給大家介紹了如何利用不到40行python代碼實現(xiàn)一個簡單的推薦系統(tǒng),文中通過示例代碼介紹的非常詳細,對大家學習或者使用Python具有一定的參考學習價值,需要的朋友們下面來一起學習學習吧2019-05-05