Inicio › Foros › Lenguajes de programación, desarrollo, código fuente › Python › Actualizar todos los paquetes de golpe en Python con pip [RESUELTO] › Respuesta a: Actualizar todos los paquetes de golpe en Python con pip [RESUELTO]
11/26/2022 a las 20:03
#48224
alonsojpd
Superadministrador
Con el siguiente comando (desde una shell de ms-dos en Windows o terminal en Linux) te mostrará todos los paquetes pendientes de actualizar, la versión que tienes instalada y la disponible:
MS DOS
1 |
pip3 list --outdated |
Te mostrará algo así:
TeX
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
Package Version Latest Type ---------------------- ------------ ----------- ----- asgiref 3.4.1 3.5.2 wheel astroid 2.4.2 2.12.13 wheel attrs 21.4.0 22.1.0 wheel beautifulsoup4 4.10.0 4.11.1 wheel branca 0.5.0 0.6.0 wheel certifi 2021.10.8 2022.9.24 wheel cffi 1.15.0 1.15.1 wheel charset-normalizer 2.0.7 3.0.1 wheel click 8.1.2 8.1.3 wheel colorama 0.4.4 0.4.6 wheel cryptography 36.0.0 38.0.3 wheel Django 4.0.1 4.1.3 wheel django-bootstrap5 21.3 22.2 wheel django-cors-headers 3.11.0 3.13.0 wheel djangorestframework 3.13.1 3.14.0 wheel Flask 2.1.1 2.2.2 wheel folium 0.12.1.post1 0.13.0 wheel fonttools 4.32.0 4.38.0 wheel idna 3.3 3.4 wheel importlib-metadata 4.11.3 5.1.0 wheel isort 5.6.4 5.10.1 wheel Jinja2 3.1.1 3.1.2 wheel jsonschema 4.4.0 4.17.1 wheel kiwisolver 1.4.2 1.4.4 wheel lazy-object-proxy 1.4.3 1.8.0 wheel lxml 4.8.0 4.9.1 wheel matplotlib 3.5.1 3.6.2 wheel mccabe 0.6.1 0.7.0 wheel mistune 2.0.2 2.0.4 wheel multitasking 0.0.10 0.0.11 wheel mysql-connector-python 8.0.22 8.0.31 wheel numpy 1.20.2 1.23.5 wheel opencv-python 4.5.1.48 4.6.0.66 wheel pandas 1.4.1 1.5.2 wheel PDFNetPython3 9.1.0 9.4.0 wheel Pillow 8.4.0 9.3.0 wheel protobuf 3.14.0 4.21.9 wheel psutil 5.9.0 5.9.4 wheel pylint 2.6.0 2.15.6 wheel pyOpenSSL 21.0.0 22.1.0 wheel pyparsing 3.0.7 3.0.9 wheel pyrsistent 0.18.1 0.19.2 wheel pytz 2021.3 2022.6 wheel requests 2.26.0 2.28.1 wheel rsa 4.7.2 4.9 wheel setuptools 62.0.0 65.6.3 wheel six 1.15.0 1.16.0 wheel soupsieve 2.3.1 2.3.2.post1 wheel sqlparse 0.4.2 0.4.3 wheel Telethon 1.23.0 1.26.0 wheel tqdm 4.64.0 4.64.1 wheel tzdata 2021.5 2022.6 wheel urllib3 1.26.7 1.26.13 wheel Werkzeug 2.1.1 2.2.2 wheel wheel 0.37.1 0.38.4 wheel wrapt 1.12.1 1.14.1 wheel yfinance 0.1.70 0.1.87 wheel zipp 3.7.0 3.11.0 wheel zuora-swagger-client 1.0.0 1.1.0 wheel |