安裝Python
https://www.python.org/downloads/windows/
不要安裝最新的,可能有些模塊不匹配,安裝3.9
使用 pip 安裝模塊
Windows 用戶:打開 cmd 或 PowerShell绢慢。
模塊因為速度原因安裝不成功腻贰,嘗試下載后安裝或利用國內(nèi)鏡像:
安裝pandas和openpyxl庫
pip install pandas openpyxl
pip install pandas xlsxwriter
或
pip3 install pandas openpyxl
在線裝不成功,下載后安裝
pandas · PyPI
pip3 install pandas-2.2.3-cp39-cp39-win_amd64.whl
(Pandas 是針對 Python 編程語言進行數(shù)據(jù)操作和數(shù)據(jù)分析的熱門軟件庫巩搏。)
pip install pandas-2.2.3-cp39-cp39-win_amd64.whl
嘗試使用國內(nèi)鏡像源昨登,如使用清華大學(xué)的鏡像源
pip install pandas -i https://pypi.tuna.tsinghua.edu.cn/simple
打開終端或命令行界面。
輸入以下命令來設(shè)置清華大學(xué)的鏡像源:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
然后使用pip安裝NumPy:
pip install numpy
如果您只想為NumPy安裝指定清華大學(xué)的鏡像源贯底,而不更改全局配置丰辣,可以在安裝時添加--index-url參數(shù):
pip install numpy --index-url https://pypi.tuna.tsinghua.edu.cn/simple
以上命令會從清華大學(xué)的鏡像源下載并安裝NumPy。如果您在安裝時遇到任何問題禽捆,請確保您的網(wǎng)絡(luò)連接正常笙什,并且pip是最新版本。如有必要胚想,可以使用以下命令更新pip:
python -m pip install --upgrade pip
舉例 numpy 鏡像源安裝
NumPy 鏡像源指的是 NumPy 庫的下載鏡像琐凭,這主要是為了解決在某些地區(qū)訪問 NumPy 官方源速度慢的問題。下面是一些常用的 NumPy 鏡像源:
中國科技大學(xué)鏡像源:
pip install -i https://mirrors.ustc.edu.cn/pypi/web/simple numpy
清華大學(xué)鏡像源:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy
阿里云鏡像源:
pip install -i https://mirrors.aliyun.com/pypi/simple/ numpy
使用上述鏡像源命令浊服,pip 會從指定的鏡像源下載并安裝 NumPy 庫统屈。
安裝不成功 清理后安裝
清理
pip cache purge
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple
pip install numpy
模塊一:xlrd、xlwt牙躺、xutils --增刪改查
pandas:數(shù)據(jù)處理最常用的分析庫之一愁憔,可以讀取各種各樣格式的數(shù)據(jù)文件,一般輸出dataframe格式孽拷,功能強大
openpyxl:主要針對xlsx格式的excel進行讀取和編輯
xlrd庫:從excel中讀取數(shù)據(jù)吨掌,支持xls、xlsx
xlwt庫:對excel進行修改操作乓搬,不支持對xlsx格式的修改
xlutils庫:在xlwt和xlrd中思犁,對一個已存在的文件進行修改
xlwings:對xlsx、xls进肯、xlsm格式文件進行讀寫激蹲、格式修改等操作
xlsxwriter:用來生成excel表格,插入數(shù)據(jù)江掩、插入圖標(biāo)等表格操作学辱,不支持讀取
pip install xlrd xlwt xutils
pip install xlwings xlsxwriter