Comment vérifier si le package python est la dernière version par programme?
Comment vérifiez-vous si un package est à sa dernière version par programmation dans un script et retournez un vrai ou un faux? Je peux vérifier avec un script comme celui-ci: package='gekko' import pip if hasattr(pip, 'main'): from pip import main as pipmain else: from pip._internal import main as...