Matlab using urllib3

Security at work is demanding that I install a later version of urllib3 on my laptop. I have matlab 2025a installed. Did matlab install this library? How can I update it to the latest version? Thanks.
Peter Brown

Respuestas (1)

Ankita
Ankita el 1 de Sept. de 2025

0 votos

Hi Peter,
It appears that updating the urllib3 Python library is required due to a security requirement.
  • MATLAB does not install Python libraries like urllib3 by default. If you installed a Python distribution separately (e.g., Anaconda, or the official Python from python.org), that environment may include urllib3 (commonly installed with packages like requests).
  • Open terminal to check if urllib3” is installed and its version:
python -m pip show urllib3
  • To update urllib3 to the latest version:
python -m pip install --upgrade urllib3
Hope this helps answering your question!

Categorías

Más información sobre Introduction to Installation and Licensing en Centro de ayuda y File Exchange.

Productos

Versión

R2025a

Etiquetas

Preguntada:

el 27 de Ag. de 2025

Respondida:

el 1 de Sept. de 2025

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by