Python Comment afficher la version du package

pip show seaborn #or whichever name
# or use
import seaborn as sns
sns.__version__
Agrius