pip常用指令

2022-09-16 05:15:12 字數 1310 閱讀 7992

一、 windows命令提示符中的常見pip指令

install 【 安裝包安裝 (install packages.)】

uninstall 【 解除安裝解除安裝包 (uninstall packages.)】

freeze 【 凍結按需求格式安裝的包的輸出 (output installed packages in requirements format.)】

list 【 列表列出已安裝的包 ( list installed packages.)】

show 【 顯示已安裝軟體包的資訊 ( show information about installed packages.)】

check 【 檢查已安裝的軟體包是否具有相容的依賴項 ( verify installed packages h**e compatible dependencies.)】

config 【 配置管理本地和全域性配置 ( manage local and global configuration.)】

search 【 搜尋pypi查詢包 (search pypi for packages.)】

wheel 【 根據您的需求構建輪子 (build wheels from your requirements.)】

hash 【 包存檔的雜湊計算雜湊 ( compute hashes of package archives.)】

completion 【 用於命令完成的輔助命令 ( a helper command used for command completion.)】

debug 【 顯示對除錯有用的資訊 ( show information useful for debugging.)】

help 【 幫助顯示命令的幫助 (show help for commands.)】

二、常用命令及格式

uninstall   解除安裝

命令格式:pip uninstall 模組名   例:pip uninstall pygame   #解除安裝pygame這個模組

show     展示已安裝的「模組」的資訊

命令格式:pip show 模組名      例:pip show pygame  #展示出pygame的資訊

list     列表列出已經安裝的庫

命令格式:pip list          例:pip list         #電腦會列出已經安裝的庫名

help    顯示命令的幫助      例:pip help      #會顯示出有關pip的內容

pip常用指令及numpy安裝

二 安裝numpy 總結pip3 version python3.x 版本若返回版本資訊及安裝位置則表示已經安裝。常用命令 1.1 顯示版本和路徑 pip version1.2 獲取幫助 pip help得到pip中常用命令及作用 1.3 公升級pip pip install u pip1.4 安裝...

PIP指令全指南

pip是python的第三方包 庫 管理器,可以很方便的安裝,解除安裝,公升級,檢視python第三方庫。python有內建的標準庫,在你安裝完python後這些標準庫都已預設安裝好了,但是還有很多有用的pyhon庫不是內建安裝的,我們叫這些庫為第三方庫,要通過pip來安裝和管理第三方庫,還會管理庫...

mysql常用指令 Mysql常用指令

mysql常用指令2021 01 19 23 40 45 作用 去除select 查詢出來的結果中重複的資料,重複資料只展示一列.關鍵字 distinct 用法 select distinct source from student table source 去重的字段條件 student tabl...