Matlab using urllib3

조회 수: 25 (최근 30일)
Peter
Peter 2025년 8월 27일 18:04
답변: Ankita 2025년 9월 1일 8:10
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
  댓글 수: 1
Torsten
Torsten 2025년 8월 27일 20:06
You should contact MATLAB Technical Support:

댓글을 달려면 로그인하십시오.

답변 (1개)

Ankita
Ankita 2025년 9월 1일 8:10
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!

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

태그

제품


릴리스

R2025a

Community Treasure Hunt

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

Start Hunting!

Translated by