What version of Python is used in ArcGIS Pro?

635
3
Jump to solution
05-16-2023 02:06 AM
CarstenAndersson
Occasional Contributor

Hi.

Is there some kind of diagram or overview showing the correlation between the version of ArcGIS Pro and the version of Python?

Thanks in advanced 🙂

0 Kudos
1 Solution

Accepted Solutions
AyanPalit
Esri Regular Contributor

Available Python libraries

Ayan Palit | Principal Consultant Esri

View solution in original post

3 Replies
JohannesLindner
MVP Frequent Contributor

AFAIK, there is no version matrix available.

ArcGIS Pro uses Python 3.X

You can get the currently used Python version by running this script in your ArcGIS Pro Python Window:

import sys
print(sys.version)

 

 


Have a great day!
Johannes
AyanPalit
Esri Regular Contributor

Available Python libraries

Ayan Palit | Principal Consultant Esri
CarstenAndersson
Occasional Contributor

Thank you very much for the replies. Really appreciate it 😄

0 Kudos