Python-安裝部分包報錯解決辦法彙總

楊仙僧[v]發表於2020-12-18

1. ‘sasl.h’ file not found

Mac上安裝python-ldap==2.4.27時報錯 ‘sasl.h’ file not found

解決辦法:

	pip install python-ldap==2.4.27 --global-option=build_ext --global-option="-I$(xcrun --show-sdk-path)/usr/include/sasl"

2. 安裝reportlab==3.3.0報錯

解決辦法:

	conda install -c conda-forge reportlab 
	或者
	pip install reportlab

3. 安裝pymssql==2.1.4報錯

解決辦法:

	pip install pymssql=2.1.5

相關文章