Deep Learning Libraries Installers for ArcGIS

June 10, 2026 · View on GitHub

ArcGIS Pro, Server and the ArcGIS API for Python all include tools to use AI and Deep Learning to solve geospatial problems, such as feature extraction, pixel classification, and feature categorization. This installer includes a broad collection of components, such as PyTorch, transformers, Fast.ai and scikit-learn, for performing deep learning and machine learning tasks, a total collection of 254 packages. These packages can be used with the Deep Learning Training tools, interactive object detection, by using the arcgis.learn module within the ArcGIS API for Python, and directly imported into your own scripts and tools. Most of the tools in this collection will work on any machine, but common deep learning workflows require a recent NVIDIA graphics processing unit (GPU), and problem sizes are bound by available GPU memory, see the requirements section.

This installer adds all the included packages to the default arcgispro-py3 environment that Pro and Server both ship with, and no additional environments are necessary in order to get started using the tools. If you do create custom environments, these packages will also be included so you can use the same tools in your own custom environments as well.

For an example of the kinds of workflows this installer and ArcGIS enables, see the AI & Deep Learning in the UC 2020 Plenary video

Important

Pro 3.7, Enterprise 12.1 and their companion products are the last versions which support Maxwell, Pascal and Volta GPUs. NVIDIA is no longer providing active support for these GPUs which are from 2016 or earlier. See NVIDIA's documentation on the support lifecycle for these cards for information on affected GPUs.

Ensure compatibility by matching the versions of Deep Learning Libraries and ArcGIS software. To upgrade from a previous version, begin by uninstalling both Deep Learning Libraries and your ArcGIS software, following the instructions provided below.

Download

GitHub All Releases

Downloads for Previous Releases

Installation

On Windows:

Once you've downloaded the archive for your product, extract the Zip file to a new location, and run the Windows Installer (e.g. ProDeepLearning.msi) on Windows. This will install the deep learning frameworks into the default arcgispro-py3 Python environment, but not any custom environments you've created prior to running this installation. After installation, subsequent clones will also include the full deep learning package set. You'll need to extract the file (not just open the .MSI from within the Zip file) or the installer won't be able to find its contents. After installation, the archive and installer files can be deleted.

On Server Linux:

Extract the .tar.gz archive, e.g. with tar xvf <file>.tar.gz, then run the DeepLearning-Setup.sh script. For Server 10.9 and earlier, this would create a package set inside of the Server runtime environment. Starting at Server 10.9.1, this installation creates a new deeplearning environment located in <Server Install>/framework/runtime/deeplearning and the deep learning packages are all native Linux implementations. Next, please uncomment and update the ARCGIS_CONDA_DEEPLEARNING variable in the <Server Install>/arcgis/server/usr/init_user_param.sh file and restart your ArcGIS Server.

Upgrading From a Previous Version:

If you're upgrading from a previous release, the safest way to upgrade is to uninstall and reinstall both the product and the deep learning installer. For example, to upgrade from Pro 3.2 to Pro 3.3:

  1. Uninstall Deep Learning Libraries for ArcGIS Pro 3.2
  2. Uninstall ArcGIS Pro 3.2
  3. Directly remove any files still present in C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3 or equivalent location for your installation. These may have been left over from previously modified environment.
  4. Install ArcGIS Pro 3.3
  5. Install ArcGIS Pro 3.3 Deep Learning downloaded from this site.

After these steps, you should have a clean Pro installation with the Deep Learning package set included in the default arcgispro-py3 environment.

Manual Installation:

You can install the libraries manually using these archived instructions: - **[Pro 2.8 Manual Installation Instructions](include/install-deep-learning-frameworks-manually-2-8.pdf)** - **[Pro 2.7 Manual Installation Instructions](include/install-deep-learning-frameworks-manually-2-7.pdf)** - **[Pro 2.6 Manual Installation Instructions](include/install-deep-learning-frameworks-manually-2-6.pdf)**

Developer install steps

:warning:Following these steps will install an uncertified package set
:information_source:Make sure to clone the default Python environment to backup your install (see below)
You can install the deep learning libraries from a command prompt using these steps:
  1. Open the Python Command Prompt window.
    • You can search for this command prompt in the Start menu on Windows, or you can launch it from the product's install folder.
    • If running an enterprise product search for the Python Command Prompt 3
  2. Clone the default Python environment with this command: (don't forget the --pinned!)

    `conda create -n your-clone-name --clone arcgispro-py3 --pinned

  3. When the Python environment has been cloned, activate the cloned environment:

    activate your-clone-name

    • When the cloned enviornment is activated, the new environment name appears at the beginning of the path:

    (your-clone-name) C:\Program Files\ArcGIS\Pro\bin\Python\envs>

  4. If on a machine with an NVIDIA GPU, skip to step 5. If installing on a machine without a physical NVIDIA GPU to run the tools via CPU, run:

    set CONDA_OVERRIDE_CUDA=12.9

    • This informs conda that you don't have an appropriate GPU which would otherwise prevent installation of GPU requiring components.
  5. Install the deep learning essentials libraries into your cloned environment with:

    conda install deep-learning-essentials

    • When prompted to proceed, review the information, type y, and press Enter
    • If the packages install successfully your cloned enviornment is now setup to run deep learning workflows
  6. Type the following command to swap your product's default enviornment to your new cloned environment:

    proswap your-clone-name

    • When you next launch your product it will launch with your-clone-name as the active Python Environment and you should now be able to use deep learning tools
  7. If you run into any issues please contact Esri Technical Support

Additional Installation for Disconnected Environment

If you will be working in a disconnected environment, download the required metapackage packages from the links below and follow the instructions under the Steps to Install listed on the package's page. The packages place backbones for deep learning models in the specified install location, eliminating the need for internet access when training deep learning models in ArcGIS.

Backbones packages
ArcGIS Deep Learning Backbones package
ArcGIS Timm Deep Learning Backbones Part 1 v1.0.0 package
ArcGIS Timm Deep Learning Backbones Part 2 v1.0.0 package
ArcGIS Timm Deep Learning Backbones Part 3 v1.0.0 package
ArcGIS Timm Deep Learning Backbones Part 4 v1.0.0 package
ArcGIS SAM Backbones 1.0.0 package
ArcGIS Mistral Backbone package
ArcGIS Polygon Segmentation Postprocessing Backbone

Next Steps

Once you've installed the deep learning libraries, you can use the Deep Learning Tools to train geospatial deep learning models. You can also find out more about the capabilities of the arcgis.learn module which provides specialized access to many geospatial models beyond those directly available as Geoprocessing tools. Finally, you can add any of the above libraries to your own workflows, by importing the packages listed below.

A collection of Esri conference technical workshops on deep learning:

Requirements

Most of the packages included in the Deep Learning Libraries installer will work out of the box on any machine configuration. For example, PyTorch optionally can take advantage of a GPU, but will fall back to running its calculations on the CPU if a GPU is not available. However, GPU computation is significantly faster, and some packages such as OpenCV in this distribution only will work with a supported GPU. CUDA, or Compute Unified Device Architecture, is a general purpose computing platform for GPUs, a requirement for current GPU backed deep learning tools.

GPU requirementSupported
GPU TypeNVIDIA with CUDA Compute Capability 5.0 minimum, 7.5 or later recommended. See the list of CUDA-enabled cards to determine the compute capability of a GPU.
GPU driverNVIDIA GPU drivers — version 551.61 or higher is required.
Dedicated graphics memory minimum: 4GB
recommended: 8GB or more, depending on the deep learning model architecture and the batch size being used

† GPU memory, unlike system memory, cannot be accessed 'virtually'. If a model training consumes more GPU memory than you have available, it will fail. GPU memory is also shared across all uses of the machine, so open Pro projects with maps and other applications can limit the available memory for use with these tools.

:information_source: An out-of-date GPU driver will cause deep learning tools to fail with runtime errors indicating that CUDA is not installed or an unsupported toolchain is present. Verify that you have up-to-date GPU drivers directly provided by NVIDIA.

Tool Requirements

Geoprocessing tools using deep learning are integrated into multiple areas of the software, and require the related extensions installed to function:

ToolsExtension
Model training, inferencing and explorationImage Analyst
Point cloud classification3D Analyst
AutoML and text analysisAdvanced, no extension required

Manifest of included packages

Library NameVersionDescription
absl-py2.3.1Abseil Python Common Libraries
accelerate1.13.0Accelerate provides access to numerical libraries optimized for performance on Intel CPUs and NVidia GPUs
addict2.4.0Provides a dictionary whose items can be set using both attribute and item syntax
affine2.4.0Matrices describing affine transformation of the plane
aiodns3.6.1Simple DNS resolver for asyncio
aiohappyeyeballs2.6.1Async Happy Eyeballs for pre-resolved hosts
aiohttp3.13.5Async http client/server framework (asyncio)
aiosignal1.4.0A list of registered asynchronous callbacks
aisuite0.1.7Simple, unified interface to multiple Generative AI providers
albucore0.0.24A high-performance image processing library designed to optimize and extend the Albumentations library.
albumentations2.0.8Fast and flexible image augmentation library
alembic1.18.4A database migration tool for SQLAlchemy
anthropic0.58.2Convenient access to the Anthropic REST API
antlr-python-runtime4.9.3This is the Python runtime for ANTLR.
aom3.12.0Alliance for Open Media video codec
arcgis-dlpk3.7A collection of the essential packages to work with dlpks and the ArcGIS Learn module.
arviz0.20.0Exploratory analysis of Bayesian models with Python
bitsandbytes0.49.1Accessible large language models via k-bit quantization for PyTorch.
boto31.42.61Amazon Web Services SDK for Python
botocore1.42.61Low-level, data-driven core of boto 3
branca0.8.1Generate rich HTML + JS elements from Python
brotli1.2.0Brotli compression format
bzip21.0.8High-quality data compressor
cached-property2.0.1A decorator for caching properties in classes
cairo1.18.2A 2D graphics library with support for multiple output devices
catalogue2.0.10Super lightweight function registries for your library
catboost1.2.8Gradient boosting on decision trees library
category_encoders2.2.2A collection sklearn transformers to encode categorical variables as numeric
ccimport0.4.4Fast C++ Python binding
charls2.4.3CharLS, a C++ JPEG-LS library implementation
click-plugins1.1.1.2An extension module for click to enable registering CLI commands via setuptools entry-points
cliff3.8.0Command Line Interface Formulation Framework
cligj0.7.2Click params for commmand line interfaces to GeoJSON
cloudpathlib0.23.0pathlib.Path-style classes for interacting with files in different cloud storage services.
cmaes0.8.2Blackbox optimization with the Covariance Matrix Adaptation Evolution Strategy
cmd22.4.3A tool for building interactive command line apps
cohere5.15.0Python Library for Accessing the Cohere API.
coloredlogs15.0.1Colored terminal output for Python's logging module
colorlog6.8.2Log formatting with colors!
colour0.1.4Python color representations manipulation library (RGB, HSL, web, ...)
confection0.1.5The sweetest config system for Python
cons0.4.6An implementation of Lisp/Scheme-like cons in Python.
controlnet_aux0.0.10Auxillary models for controlnet.
cuda-cudart12.9.79CUDA Runtime Native Libraries
cuda-cudart_win-6412.9.79CUDA Runtime architecture dependent libraries
cuda-cupti12.9.79Provides libraries to enable third party tools using GPU profiling APIs.
cuda-nvrtc12.9.86NVRTC native runtime libraries
cuda-version12.9A meta-package for pinning to a CUDA release version
cudnn9.10.2.21NVIDIA's cuDNN deep neural network acceleration library
cumm0.8.2CUda Matrix Multiply library
cusparselt0.7.0.0Basic Linear Algebra for Sparse Matrices on NVIDIA GPUs
cymem2.0.11Manage calls to calloc/free through Cython
cython3.2.4The Cython compiler for writing C extensions for the Python language
cython-blis1.3.0Fast matrix-multiplication as a self-contained Python library – no system dependencies!
dataclasses0.8A backport of the dataclasses module for Python 3.6
datasets3.3.2HuggingFace/Datasets is an open library of NLP datasets.
deep-learning-essentials3.7Expansive collection of deep learning packages
descartes1.1.0Use geometric objects as matplotlib paths and patches
detreg1.0.0PyTorch Wrapper for CUDA Functions of Multi-Scale Deformable Attention
diffusers0.36.0Diffusers provides pretrained diffusion models
dill0.3.8Serialize all of python (almost)
distro1.9.0Provides information about the OS distribution it runs on
docstring_parser0.17.0Parse Python docstrings in reST and Google format
dtreeviz1.3.7Decision tree visualization
eigen3.4.0C++ template library for linear algebra
einops0.7.0A new flavor of deep learning operations
ensemble-boxes1.0.8Methods for ensembling boxes from object detection models
etuples0.3.9Python S-expression emulation using tuple-like objects.
eval-type-backport0.3.0Like typing._eval_type, but lets older Python versions use newer typing features.
expat2.7.3Expat XML parser library in C
fairlearn0.13.0Simple and easy fairness assessment and unfairness mitigation
fastai1.0.63fastai makes deep learning with PyTorch faster, more accurate, and easier
fastavro1.12.1Fast read/write of AVRO files
fastprogress0.2.3A fast and simple progress bar for Jupyter Notebook and console
ffmpeg8.0.1Cross-platform solution to record, convert and stream audio and video
filelock3.16.1A platform independent file lock
fiona1.10.1OGR's neat, nimble, no-nonsense API for Python programmers
fmt11.2.0Provides a safe replacement for the printf family of functions
folium0.20.0Make beautiful maps with Leaflet.js and Python
fribidi1.0.16The Free Implementation of the Unicode Bidirectional Algorithm
frozenlist1.8.0A list-like structure which implements collections.abc.MutableSequence
ftfy6.3.1Fixes some problems with Unicode text after the fact
gdown5.2.0Download large files from Google Drive.
geopandas1.1.3Geographic pandas extensions, base package
geopandas-base1.1.3Geographic pandas extensions, metapackage
geos3.14.0A C++ port of the Java Topology Suite (JTS)
getopt-win320.1A port of getopt for Visual C++
gflags2.3.0A C++ library that implements commandline flags processing
giflib5.2.2Library for reading and writing gif images
glib2.86.5Provides core application building blocks for libraries and applications written in C
glib-tools2.86.5Provides core application building blocks for libraries and applications written in C, command line tools
google-api-core2.25.1Core Library for Google Client Libraries
google-api-core-grpc2.25.1Core Library for Google Client Libraries with grpc
google-auth2.47.0Google authentication library for Python
google-cloud-aiplatform1.105.0A Python SDK for Vertex AI, a fully managed, end-to-end platform for data science and machine learning.
google-cloud-bigquery3.35.0Enables super-fast, SQL queries against append-mostly tables, using Google's infrastructure.
google-cloud-bigquery-core3.35.0Enables super-fast, SQL queries against append-mostly tables, using Google's infrastructure.
google-cloud-core2.5.0API Client library for Google Cloud: Core Helpers
google-cloud-resource-manager1.14.2Google Cloud Resource Manager API client library
google-cloud-storage2.18.0Python Client for Google Cloud Storage
google-genai1.27.0Google Gen AI Python SDK
google-resumable-media2.7.2Utilities for Google Media Downloads and Resumable Uploads
googleapis-common-protos1.72.0Common protobufs used in Google APIs
googleapis-common-protos-grpc1.72.0Extra grpc requirements for googleapis-common-protos
gputil1.4.0NVIDIA GPU status from Python
graphite21.3.14A "smart font" system that handles the complexities of lesser-known languages of the world
graphviz8.1.0Open Source graph visualization software
groq0.9.0The official Python library for the groq API
groundingdino-py0.4.0open-set object detector
grpc-google-iam-v10.14.2GRPC library for the google-iam-v1 service
grpcio1.67.1HTTP/2-based RPC framework
gsplat1.5.3Python package for differentiable rasterization of gaussians
gts0.7.6GNU Triangulated Surface Library
h3-py4.2.2H3 Hexagonal Hierarchical Geospatial Indexing System
h5netcdf1.7.3Pythonic interface to netCDF4 via h5py
harfbuzz10.2.0An OpenType text shaping engine
httpx-sse0.4.0Consume Server-Sent Event (SSE) messages with HTTPX.
huggingface_hub0.34.4Client library to download and publish models on the huggingface.co hub
humanfriendly10.0Human friendly output for text interfaces using Python
hydra-core1.3.2A framework for elegantly configuring complex applications
ibm-cos-sdk2.14.2Allows developers to writes software that interacts with IBM Cloud Object Storage
ibm-cos-sdk-core2.14.2A low-level interface to IBM Cloud Object Storage
ibm-cos-sdk-s3transfer2.14.2s3transfer is a Python library for managing IBM COS transfers.
ibm-watsonx-ai1.3.28Provides IBM watsonx.ai services.
icu73.1International Components for Unicode
imagecodecs2024.9.22Image transformation, compression, and decompression codecs
imageio2.37.3A Python library for reading and writing image data
inplace-abn1.1.0In-Place Activated BatchNorm
invoke2.2.0Pythonic task execution
iopath0.1.10Lightweight I/O abstraction library
jaxtyping0.3.7Type annotations and runtime checking for shape and dtype of JAX arrays, and PyTrees.
jiter0.12.0Fast iterable JSON parser.
jmespath1.1.0Query language for JSON
joblib1.5.3Python function as pipeline jobs
jxrlib1.2jxrlib - JPEG XR Library by Microsoft, built from Debian hosted sources.
langcodes3.5.0Labels and compares human languages in a standardized way
language-data1.3.0Supplement to 'langcodes' packages storing names and statistics of human languages
lark1.3.1a modern parsing library
laspy2.5.4A Python library for reading, modifying and creating LAS files
lazrs-python0.6.2Python bindings for laz-rs, a Rust package for working with LAS data
lazy_loader0.5Easily load subpackages and functions on demand
lcms22.16The Little color management system
libaec1.1.6Adaptive entropy coding library
libavif1.2.0A friendly, portable C implementation of the AV1 Image File Format
libboost1.88.0Free peer-reviewed portable C++ source libraries
libboost-python1.88.0Free peer-reviewed portable C++ source libraries.
libcublas12.9.1.4An implementation of BLAS (Basic Linear Algebra Subprograms) on top of the NVIDIA CUDA runtime.
libcudnn9.10.2.21NVIDIA's cuDNN deep neural network acceleration library
libcudnn-dev9.10.2.21NVIDIA's cuDNN deep neural network acceleration library, development headers
libcudss00.4.0.2The NVIDIA cuDSS runtime library.
libcufft11.4.1.4cuFFT native runtime libraries
libcurand10.3.10.19cuRAND native runtime libraries
libcurl8.19.0Tool and library for transferring data with URL syntax
libcusolver11.7.5.82CUDA Linear Solver Library
libcusparse12.5.10.65CUDA Sparse Matrix Library
libffi3.5.2Portable foreign-function interface library
libgd2.3.3Library for the dynamic creation of images
libglib2.86.5Provides core application building blocks for libraries and applications written in C
libgrpc1.67.1gRPC is a modern, open source, high-performance remote procedure call (RPC) framework
libiconv1.18Convert text between different encodings
libintl0.22.5Library that provides natural language support to programs
libintl-devel0.22.5Library that provides natural language support to programs, development headers
libmagma2.9.0Matrix Algebra on GPU and Multicore Architectures
libnghttp21.68.1HTTP/2 C library
libnghttp31.15.0nghttp3 is an implementation of RFC 9114 HTTP/3 mapping over QUIC and RFC 9204 QPACK in C.
libnpp12.4.1.87NPP native runtime libraries
libnvjitlink12.9.86CUDA nvJitLink library
libnvjpeg12.4.0.76nvJPEG native runtime libraries
libopencv4.13.0Computer vision and machine learning software library
libsentencepiece0.2.0Unsupervised text tokenizer for Neural Network-based text generation.
libspatialindex2.1.0Extensible framework for robust spatial indexing
libsrt1.5.3Secure, Reliable Transport
libtorch2.9.1PyTorch is an optimized tensor library for deep learning using GPUs and CPUs.
libuv1.51.0Cross-platform asynchronous I/O
libvpl2.16.0Intel Video Processing Library
libwebp1.3.2WebP image library
libwebp-base1.3.2WebP image library, minimal base library
libxgboost3.2.0eXtreme Gradient Boosting
libzopfli1.0.3A compression library for very good but slow deflate or zlib compression
lightgbm4.6.0LightGBM is a gradient boosting framework that uses tree based learning algorithms
llvmlite0.46.0A lightweight LLVM python binding for writing JIT compilers
logical-unification0.4.7Logical unification in Python.
lomond0.3.3Websocket Client Library
mako1.3.11Template library written in Python
mapclassify2.10.0Classification schemes for choropleth maps
marisa-trie1.3.1Trie-like structures for Python based on marisa-trie C++ library
markdown3.8Python implementation of Markdown
minikanren1.0.3An extensible, lightweight relational/logic programming DSL written in pure Python
mistralai1.9.11Python client library for Mistral AI platform
ml-datasets0.2.0Machine learning dataset loaders for testing and example scripts
mljar-supervised0.11.2Automated Machine Learning Pipeline with Feature Engineering and Hyper-Parameters Tuning
mmcv2.0.1OpenMMLab Computer Vision Foundation
mmdet3.1.0OpenMMLab Detection Toolbox and Benchmark
mmdet3d1.2.0Next generation platform for general 3D object detection
mmengine0.10.7Engine of OpenMMLab projects
mmsegmentation1.2.2semantic segmentation toolbox and benchmark
multidict6.7.1Key-value pairs where keys are sorted and can reoccur
multipledispatch1.0.0Multiple dispatch in Python
multiprocess0.70.15better multiprocessing and multithreading in python
munch4.0.0A dot-accessible dictionary (a la JavaScript objects)
murmurhash1.0.15A non-cryptographic hash function
nb_conda_kernels2.5.2Launch Jupyter kernels for any installed conda environment
ngtcp21.20.0Effort to implement IETF QUIC protocol.
ninja_syntax1.7.2Python module for generating .ninja files
numba0.63.1NumPy aware dynamic Python compiler using LLVM
nvidia-ml-py13.580.82Python bindings to the NVIDIA Management Library
omegaconf2.3.0Flexible Python configuration system
onnx1.18.0Open Neural Network Exchange library
onnxruntime1.22.0High performance ML inferencing and training accelerator, Python library
onnxruntime-cpp1.22.0High performance ML inferencing and training accelerator, C++ runtime
open-clip-torch2.32.0An open source implementation of CLIP.
openai1.109.1Python client library for the OpenAI API
openai-clip1.0.1CLIP (Contrastive Language-Image Pretraining), Predict the most relevant text snippet given an image
opencv4.13.0Computer vision and machine learning software library
openjpeg2.5.4An open-source JPEG 2000 codec written in C
optree0.18.0Optimized PyTree Utilities
optuna3.0.4A hyperparameter optimization framework
pango1.50.7Text layout and rendering engine
pbr6.1.1Python Build Reasonableness
pccm0.4.11Python C++ code manager
pcre210.47Regular expression pattern matching using the same syntax and semantics as Perl 5
pixman0.43.4A low-level software library for pixel manipulation
plotly5.20.0An interactive, browser-based graphing library for Python
portalocker3.2.0Portalocker is a library to provide an easy API to file locking.
preshed3.0.12Cython Hash Table for Pre-Hashed Keys
prettytable2.1.0Display tabular data in a visually appealing ASCII table format
proj49.8.1PROJ coordinate transformation software library
propcache0.4.1Accelerated property cache
proto-plus1.27.1Beautiful, Pythonic protocol buffers.
py-opencv4.13.0Computer vision and machine learning software library
py-xgboost3.2.0Python bindings for the scalable, portable and distributed gradient boosting XGBoost library
pyasn10.6.3ASN.1 types and codecs
pyasn1-modules0.4.2A collection of ASN.1-based protocols modules
pycares4.10.0Python interface for c-ares
pyclipper1.4.0Cython wrapper of Angus Johnson's Clipper library for polygon clipping
pycocotools2.0.7Python API for the MS-COCO dataset
pymc5.25.1Bayesian Stochastic Modelling in Python
pymc-base5.25.1PyMC: Bayesian Stochastic Modelling in Python
pyopenssl26.0.0Python wrapper module around the OpenSSL library
pyperclip1.8.2A cross-platform clipboard module for Python
pyproj3.7.2Python interface to PROJ4 library for cartographic transformations
pyquaternion0.9.9Pythonic library for representing and using quaternions
pyreadline33.5.4A python implmementation of GNU readline, modernized
pytensor2.32.0An optimizing compiler for evaluating mathematical expressions.
pytensor-base2.32.0An optimizing compiler for evaluating mathematical expressions.
python-flatbuffers23.5.26Python runtime library for use with the Flatbuffers serialization format
python-graphviz0.20.1Simple Python interface for Graphviz
python-xxhash3.5.0Python binding for xxHash
pytorch2.9.1PyTorch is an optimized tensor library for deep learning using GPUs and CPUs
pytorch-gpu2.9.1PyTorch is an optimized tensor library for deep learning using GPUs and CPUs, GPU specific build
pywavelets1.9.0Discrete Wavelet Transforms in Python
pywin32308Python extensions for Windows
rasterio1.4.3Rasterio reads and writes geospatial raster datasets
resize-right0.0.2The correct way to resize images or tensors. For Numpy or Pytorch.
rsa4.7.2Pure-Python RSA implementation
rtree1.4.1R-Tree spatial index for Python GIS
ruamel_yaml0.17.21A YAML dumper / loader
s3transfer0.16.0An Amazon S3 Transfer Manager
safetensors0.7.0Fast and Safe Tensor serialization
sam-21.0.0.20241215SAM 2: Segment Anything in Images and Videos
samgeo3.7A collection of the essential packages to work with the Segment Geospatial (samgeo) stack.
scikit-image0.25.2Image processing routines for SciPy
scikit-learn1.6.1A set of python modules for machine learning and data mining
scikit-plot0.3.12Plotting for scikit-learn objects
segment-anything1.0An unofficial Python package for Meta AI's Segment Anything Model
segment-anything-hq0.3Official Python package for Segment Anything in High Quality
segment-geospatial1.2.2A Python package for segmenting geospatial data with the Segment Anything Model (SAM)
sentencepiece0.2.0Unsupervised text tokenizer and detokenizer
sentencepiece-python0.2.0Unsupervised text tokenizer for Neural Network-based text generation.
sentencepiece-spm0.2.0Unsupervised text tokenizer for Neural Network-based text generation.
shap0.50.0A unified approach to explain the output of any machine learning model
shapely2.1.2Geometric objects, predicates, and operations
simsimd6.5.0Portable mixed-precision BLAS-like vector math library for x86 and ARM
sleef3.5.1SIMD library for evaluating elementary functions
slicer0.0.8A small package for big slicing
smart_open5.2.1Python library for efficient streaming of large files
snuggs1.4.7Snuggs are s-expressions for NumPy
spacy3.8.11Industrial-strength Natural Language Processing
spacy-legacy3.0.12spaCy NLP legacy functions and architectures for backwards compatibility
spacy-loggers1.0.5Alternate loggers for spaCy pipeline training
spandrel0.4.1Spandrel gives your project support for various PyTorch architectures.
spconv2.3.8Spatial sparse convolution
srsly2.5.2Modern high-performance serialization utilities for Python
stevedore5.1.0Manage dynamic plugins for Python applications
stringzilla3.12.6SIMD-accelerated string search, sort, hashes, fingerprints, & edit distances
supervision0.25.1A set of easy-to-use utils that will come in handy in any Computer Vision project
tabulate0.10.0Pretty-print tabular data in Python, a library and a command-line utility
tenacity9.1.4Retry a flaky function whenever an exception occurs until it works
tensorboard2.20.0TensorBoard lets you watch Tensors Flow
tensorboard-data-server0.7.2Data server for TensorBoard
tensorboardx2.6.2.2TensorBoardX lets you watch Tensors Flow without Tensorflow
termcolor3.2.0ANSII Color formatting for output in terminal
terminaltables3.1.0Generate simple tables in terminals from a nested list of strings
thinc8.3.6Learn super-sparse multi-class models
threadpoolctl3.6.0Python helpers to control the threadpools of native libraries
tifffile2024.12.12Read and write TIFF files
timm1.0.14PyTorch image models
tokenizers0.21.0Fast State-of-the-Art Tokenizers optimized for Research and Production
tomesd0.1.3ToMe (Token Merging) for SD speeds up diffusion by merging redundant tokens.
torch-cluster1.6.3.20250812Extension library of highly optimized graph cluster algorithms for use in PyTorch
torch-geometric2.7.0Geometric deep learning extension library for PyTorch
torch-scatter2.1.2.20250812Extension library of highly optimized sparse update (scatter and segment) operations
torch-sparse0.6.18.20250812Extension library of optimized sparse matrix operations with autograd support
torch-spline-conv1.2.2.20250812PyTorch implementation of the spline-based convolution operator of SplineCNN
torchdiffeq0.2.5ODE solvers and adjoint sensitivity analysis in PyTorch.
torchsde0.2.6SDE solvers and stochastic adjoint sensitivity analysis in PyTorch.
torchvision0.25.0Image and video datasets and models for torch deep learning
trampoline0.1.2Simple and tiny yield-based trampoline implementation
transformers4.51.3State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch
trimesh2.35.39Import, export, process, analyze and view triangular meshes.
typeguard2.12.1Runtime type checker for Python
typer-slim0.24.0A library for building CLI applications
types-requests2.30.0.0Typing stubs for requests
types-urllib31.26.25.13Typing stubs for urllib3
typing3.10.0.0Type Hints for Python - backport for Python<3.5
vertexai1.71.1A Python SDK for Vertex AI
wadler-lindig0.1.7A pretty printer which consumes less space and handles complex types
wasabi1.1.3A lightweight console printing and formatting toolkit
weasel0.4.3A small and easy workflow system
websockets15.0.1A library for building WebSocket servers and clients in Python with a focus on correctness, simplicity, robustness, and performance.
werkzeug3.1.6The Python WSGI Utility Library
winloop0.3.1Windows version of uvloop
wordcloud1.9.5A little word cloud generator in Python
xarray-einstats0.9.1Stats, linear algebra and einops for xarray.
xgboost3.2.0Scalable, portable and distributed Gradient Boosting (GBDT, GBRT or GBM) library
xmltodict1.0.2Makes working with XML feel like you are working with JSON
xxhash0.8.0Extremely fast hash algorithm
xyzservices2026.3.0Source of XYZ tiles providers
yapf0.43.0A formatter for Python files
yarl1.23.0Yet another URL library
zfp1.0.1Library for compressed numerical arrays that support high throughput read and write random access
_py-xgboost-mutex2.0Metapackage for selecting the desired implementation of XGBoost
Manifest for Pro 3.6 / Server 12.1 Library Name | Version | Description -------------|---------|------------ [absl-py](https://abseil.io/) | 2.1.0 | Abseil Python Common Libraries accelerate | 1.4.0 | Accelerate provides access to numerical libraries optimized for performance on Intel CPUs and NVidia GPUs [addict](https://github.com/mewwts/addict) | 2.4.0 | Provides a dictionary whose items can be set using both attribute and item syntax [affine](https://github.com/sgillies/affine) | 2.4.0 | Matrices describing affine transformation of the plane [aiodns](https://github.com/aio-libs/aiodns) | 3.5.0 | Simple DNS resolver for asyncio [aiohappyeyeballs](https://aiohappyeyeballs.readthedocs.io) | 2.6.1 | Async Happy Eyeballs for pre-resolved hosts [aiohttp](https://github.com/aio-libs/aiohttp) | 3.12.15 | Async http client/server framework (asyncio) [aiosignal](https://github.com/aio-libs/aiosignal) | 1.4.0 | A list of registered asynchronous callbacks [aisuite](https://github.com/andrewyng/aisuite) | 0.1.7 | Simple, unified interface to multiple Generative AI providers [albucore](https://github.com/albumentations-team/albucore) | 0.0.24 | A high-performance image processing library designed to optimize and extend the Albumentations library. [albumentations](https://github.com/albu/albumentations) | 2.0.8 | Fast and flexible image augmentation library [alembic](https://bitbucket.org/zzzeek/alembic) | 1.16.5 | A database migration tool for SQLAlchemy [anthropic](https://github.com/anthropics/anthropic-sdk-python) | 0.58.2 | Convenient access to the Anthropic REST API [antlr-python-runtime](https://www.antlr.org) | 4.9.3 | This is the Python runtime for ANTLR. [aom](https://aomedia.org/) | 3.12.0 | Alliance for Open Media video codec [arcgis-dlpk](https://anaconda.org/esri-build/arcgis-dlpk) | 3.6 | A collection of the essential packages to work with dlpks and the ArcGIS Learn module. [arviz](https://github.com/arviz-devs/arviz) | 0.20.0 | Exploratory analysis of Bayesian models with Python [bitsandbytes](https://huggingface.co/docs/bitsandbytes) | 0.45.2 | Accessible large language models via k-bit quantization for PyTorch. [boto3](https://aws.amazon.com/sdk-for-python) | 1.37.10 | Amazon Web Services SDK for Python [botocore](http://aws.amazon.com/sdk-for-python/) | 1.37.10 | Low-level, data-driven core of boto 3 [branca](https://github.com/python-visualization/branca) | 0.8.1 | Generate rich HTML + JS elements from Python [brotli](http://github.com/google/brotli) | 1.1.0 | Brotli compression format [bzip2](http://www.bzip.org/) | 1.0.8 | High-quality data compressor [cached-property](https://github.com/pydanny/cached-property) | 2.0.1 | A decorator for caching properties in classes [cairo](http://cairographics.org/) | 1.18.2 | A 2D graphics library with support for multiple output devices [catalogue](https://github.com/explosion/catalogue) | 2.0.10 | Super lightweight function registries for your library [catboost](http://catboost.ai) | 1.2.8 | Gradient boosting on decision trees library [category_encoders](https://github.com/scikit-learn-contrib/categorical_encoding) | 2.2.2 | A collection sklearn transformers to encode categorical variables as numeric [ccimport](https://github.com/FindDefinition/ccimport) | 0.4.4 | Fast C++ Python binding [charls](https://github.com/team-charls/charls) | 2.4.2 | CharLS, a C++ JPEG-LS library implementation [click-plugins](https://github.com/click-contrib/click-plugins) | 1.1.1.2 | An extension module for click to enable registering CLI commands via setuptools entry-points [cliff](https://github.com/openstack/cliff) | 3.8.0 | Command Line Interface Formulation Framework [cligj](https://github.com/mapbox/cligj) | 0.7.2 | Click params for commmand line interfaces to GeoJSON [cloudpathlib](https://github.com/drivendataorg/cloudpathlib) | 0.21.0 | pathlib.Path-style classes for interacting with files in different cloud storage services. [cmaes](https://github.com/CyberAgent/cmaes) | 0.8.2 | Blackbox optimization with the Covariance Matrix Adaptation Evolution Strategy [cmd2](https://github.com/python-cmd2/cmd2) | 2.4.3 | A tool for building interactive command line apps [cohere](https://github.com/cohere-ai/cohere-python) | 5.15.0 | Python Library for Accessing the Cohere API. [coloredlogs](https://coloredlogs.readthedocs.org) | 15.0.1 | Colored terminal output for Python's logging module [colorlog](https://github.com/borntyping/python-colorlog) | 6.8.2 | Log formatting with colors! [colour](https://github.com/vaab/colour) | 0.1.4 | Python color representations manipulation library (RGB, HSL, web, ...) [confection](https://github.com/explosion/confection) | 0.1.5 | The sweetest config system for Python [cons](https://github.com/pythological/python-cons) | 0.4.6 | An implementation of Lisp/Scheme-like cons in Python. [controlnet_aux](https://github.com/huggingface/controlnet_aux) | 0.0.10 | Auxillary models for controlnet. [cuda-cudart](https://developer.nvidia.com/cuda-toolkit) | 12.6.77 | CUDA Runtime Native Libraries [cuda-cudart_win-64](https://developer.nvidia.com/cuda-toolkit) | 12.6.77 | CUDA Runtime architecture dependent libraries [cuda-cupti](https://developer.nvidia.com/cuda-toolkit) | 12.6.80 | Provides libraries to enable third party tools using GPU profiling APIs. [cuda-nvrtc](https://developer.nvidia.com/cuda-toolkit) | 12.6.85 | NVRTC native runtime libraries [cuda-version](https://developer.nvidia.com/cuda-toolkit) | 12.6 | A meta-package for pinning to a CUDA release version [cudnn](https://developer.nvidia.com/cudnn) | 9.5.1.17 | NVIDIA's cuDNN deep neural network acceleration library [cumm](https://github.com/FindDefinition/PCCM) | 0.8.1 | CUda Matrix Multiply library [cusparselt](https://developer.nvidia.com/cusparse) | 0.7.0.0 | Basic Linear Algebra for Sparse Matrices on NVIDIA GPUs [cymem](https://github.com/explosion/cymem) | 2.0.11 | Manage calls to calloc/free through Cython [cython](http://www.cython.org/) | 3.1.4 | The Cython compiler for writing C extensions for the Python language [cython-blis](http://github.com/explosion/cython-blis) | 1.3.0 | Fast matrix-multiplication as a self-contained Python library – no system dependencies! [dataclasses](https://github.com/ericvsmith/dataclasses://github.com/ericvsmith/dataclasses/) | 0.8 | A backport of the dataclasses module for Python 3.6 [datasets](https://github.com/huggingface/datasets) | 3.3.2 | HuggingFace/Datasets is an open library of NLP datasets. [deep-learning-essentials](https://github.com/esri/deep-learning-frameworks) | 3.6 | Expansive collection of deep learning packages [descartes](http://bitbucket.org/sgillies/descartes/) | 1.1.0 | Use geometric objects as matplotlib paths and patches [detreg](https://github.com/amirbar/DETReg) | 1.0.0 | PyTorch Wrapper for CUDA Functions of Multi-Scale Deformable Attention [diffusers](https://github.com/huggingface/diffusers) | 0.34.0 | Diffusers provides pretrained diffusion models [dill](http://www.cacr.caltech.edu/~mmckerns/dill.htm) | 0.3.8 | Serialize all of python (almost) [distro](https://github.com/nir0s/distro) | 1.9.0 | Provides information about the OS distribution it runs on [docstring_parser](https://github.com/rr-/docstring_parser) | 0.17.0 | Parse Python docstrings in reST and Google format [dtreeviz](https://github.com/parrt/dtreeviz) | 1.3.7 | Decision tree visualization [einops](https://github.com/arogozhnikov/einops) | 0.7.0 | A new flavor of deep learning operations [ensemble-boxes](https://github.com/ZFTurbo/Weighted-Boxes-Fusion) | 1.0.8 | Methods for ensembling boxes from object detection models [etuples](https://github.com/pythological/etuples) | 0.3.9 | Python S-expression emulation using tuple-like objects. [eval-type-backport](https://github.com/alexmojaki/eval_type_backport/) | 0.2.2 | Let's older Python versions use newer typing features. [expat](http://expat.sourceforge.net) | 2.7.3 | Expat XML parser library in C [fairlearn](https://github.com/fairlearn/fairlearn) | 0.8.0 | Simple and easy fairness assessment and unfairness mitigation [fastai](https://github.com/fastai/fastai) | 1.0.63 | fastai makes deep learning with PyTorch faster, more accurate, and easier [fastavro](https://github.com/fastavro/fastavro) | 1.12.0 | Fast read/write of AVRO files [fastprogress](https://github.com/fastai/fastprogress) | 0.2.3 | A fast and simple progress bar for Jupyter Notebook and console [ffmpeg](http://www.ffmpeg.org/) | 7.0.3 | Cross-platform solution to record, convert and stream audio and video [filelock](https://github.com/benediktschmitt/py-filelock) | 3.16.1 | A platform independent file lock [fiona](http://github.com/Toblerity/Fiona) | 1.10.1 | OGR's neat, nimble, no-nonsense API for Python programmers [folium](https://python-visualization.github.io/folium/) | 0.20.0 | Make beautiful maps with Leaflet.js and Python [fribidi](https://github.com/fribidi/fribidi) | 1.0.16 | The Free Implementation of the Unicode Bidirectional Algorithm [frozenlist](https://github.com/aio-libs/frozenlist) | 1.5.0 | A list-like structure which implements collections.abc.MutableSequence [ftfy](https://github.com/LuminosoInsight/python-ftfy/) | 6.3.1 | Fixes some problems with Unicode text after the fact [gdown](https://github.com/wkentaro/gdown) | 5.2.0 | Download large files from Google Drive. [geopandas](http://geopandas.org) | 1.1.0 | Geographic pandas extensions, base package [geopandas-base](http://geopandas.org) | 1.1.0 | Geographic pandas extensions, metapackage [geos](http://trac.osgeo.org/geos/) | 3.14.0 | A C++ port of the Java Topology Suite (JTS) [getopt-win32](https://vcpkg.info/port/getopt-win32) | 0.1 | A port of getopt for Visual C++ [giflib](http://giflib.sourceforge.net) | 5.2.2 | Library for reading and writing gif images [glib](https://developer.gnome.org/glib/) | 2.86.0 | Provides core application building blocks for libraries and applications written in C [glib-tools](https://developer.gnome.org/glib/) | 2.86.0 | Provides core application building blocks for libraries and applications written in C, command line tools [google-api-core](https://github.com/googleapis/python-api-core) | 2.25.1 | Core Library for Google Client Libraries [google-api-core-grpc](https://github.com/googleapis/python-api-core) | 2.25.1 | Core Library for Google Client Libraries with grpc [google-auth](https://github.com/googleapis/google-auth-library-python) | 2.38.0 | Google authentication library for Python [google-cloud-aiplatform](https://github.com/googleapis/python-aiplatform) | 1.105.0 | A Python SDK for Vertex AI, a fully managed, end-to-end platform for data science and machine learning. [google-cloud-bigquery](https://github.com/googleapis/python-bigquery) | 3.35.0 | Enables super-fast, SQL queries against append-mostly tables, using Google's infrastructure. [google-cloud-bigquery-core](https://github.com/googleapis/python-bigquery) | 3.35.0 | Enables super-fast, SQL queries against append-mostly tables, using Google's infrastructure. [google-cloud-core](https://github.com/googleapis/python-cloud-core) | 2.4.3 | API Client library for Google Cloud: Core Helpers [google-cloud-resource-manager](https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-resource-manager) | 1.14.2 | Google Cloud Resource Manager API client library [google-cloud-storage](https://github.com/googleapis/python-storage) | 2.18.0 | Python Client for Google Cloud Storage [google-crc32c](https://github.com/googleapis/python-crc32c) | 1.6.0 | Python wrapper for a hardware-based implementation of the CRC32C hashing algorithm [google-genai](https://github.com/googleapis/python-genai) | 1.27.0 | Google Gen AI Python SDK [google-resumable-media](https://github.com/googleapis/google-resumable-media-python) | 2.7.2 | Utilities for Google Media Downloads and Resumable Uploads [googleapis-common-protos](https://github.com/googleapis/google-cloud-python/tree/main/packages/googleapis-common-protos) | 1.69.2 | Common protobufs used in Google APIs [googleapis-common-protos-grpc](https://github.com/googleapis/google-cloud-python/tree/main/packages/googleapis-common-protos) | 1.69.2 | Extra grpc requirements for googleapis-common-protos [gputil](https://github.com/anderskm/gputil) | 1.4.0 | NVIDIA GPU status from Python [graphite2](http://graphite.sil.org/) | 1.3.14 | A "smart font" system that handles the complexities of lesser-known languages of the world [graphviz](http://www.graphviz.org/) | 8.1.0 | Open Source graph visualization software [groq](https://console.groq.com/docs/quickstart) | 0.9.0 | The official Python library for the groq API [groundingdino-py](https://github.com/giswqs/GroundingDINO) | 0.4.0 | open-set object detector [grpc-google-iam-v1](https://github.com/googleapis/google-cloud-python/tree/main/packages/grpc-google-iam-v1) | 0.14.2 | GRPC library for the google-iam-v1 service [grpcio](https://grpc.io) | 1.67.1 | HTTP/2-based RPC framework [gsplat](https://github.com/nerfstudio-project/gsplat) | 1.4.0 | Python package for differentiable rasterization of gaussians [gts](http://gts.sourceforge.net/) | 0.7.6 | GNU Triangulated Surface Library [h3-py](https://uber.github.io/h3-py/) | 4.2.2 | H3 Hexagonal Hierarchical Geospatial Indexing System [h5netcdf](https://github.com/h5netcdf/h5netcdf) | 1.2.0 | Pythonic interface to netCDF4 via h5py [harfbuzz](http://www.freedesktop.org/wiki/Software/HarfBuzz/) | 10.2.0 | An OpenType text shaping engine [httpx-sse](https://github.com/florimondmanca/httpx-sse) | 0.4.0 | Consume Server-Sent Event (SSE) messages with HTTPX. [huggingface_hub](https://github.com/huggingface/huggingface_hub) | 0.33.0 | Client library to download and publish models on the huggingface.co hub [humanfriendly](https://humanfriendly.readthedocs.org) | 10.0 | Human friendly output for text interfaces using Python [hydra-core](https://hydra.cc) | 1.3.2 | A framework for elegantly configuring complex applications [ibm-cos-sdk](https://github.com/ibm/ibm-cos-sdk-python) | 2.14.2 | Allows developers to writes software that interacts with IBM Cloud Object Storage [ibm-cos-sdk-core](https://github.com/ibm/ibm-cos-sdk-python-core) | 2.14.2 | A low-level interface to IBM Cloud Object Storage [ibm-cos-sdk-s3transfer](https://github.com/IBM/ibm-cos-sdk-python-s3transfer) | 2.14.2 | s3transfer is a Python library for managing IBM COS transfers. [ibm-watsonx-ai](https://ibm.github.io/watsonx-ai-python-sdk/) | 1.3.28 | Provides IBM watsonx.ai services. [icu](http://site.icu-project.org/) | 73.1 | International Components for Unicode [imagecodecs](https://github.com/cgohlke/imagecodecs) | 2024.9.22 | Image transformation, compression, and decompression codecs [imageio](http://imageio.github.io) | 2.37.0 | A Python library for reading and writing image data [inplace-abn](https://github.com/mapillary/inplace_abn) | 1.1.0 | In-Place Activated BatchNorm [iopath](https://github.com/facebookresearch/iopath) | 0.1.10 | Lightweight I/O abstraction library [jiter](https://crates.io/crates/jiter) | 0.6.1 | Fast iterable JSON parser. [jmespath](http://jmespath.org/) | 1.0.1 | Query language for JSON [joblib](http://packages.python.org/joblib/) | 1.5.2 | Python function as pipeline jobs [jxrlib](https://packages.debian.org/source/sid/jxrlib) | 1.2 | jxrlib - JPEG XR Library by Microsoft, built from Debian hosted sources. [langcodes](http://github.com/rspeer/langcodes) | 3.5.0 | Labels and compares human languages in a standardized way [language-data](https://github.com/georgkrause/language_data) | 1.3.0 | Supplement to 'langcodes' packages storing names and statistics of human languages [lark](https://github.com/lark-parser/lark) | 1.2.2 | a modern parsing library [laspy](http://github.com/laspy/laspy) | 2.5.4 | A Python library for reading, modifying and creating LAS files [lazrs-python](http://github.com/laz-rs/laz-rs-python) | 0.6.2 | Python bindings for laz-rs, a Rust package for working with LAS data [lazy_loader](https://scientific-python.org/specs/spec-0001/) | 0.4 | Easily load subpackages and functions on demand [lcms2](https://www.littlecms.com) | 2.16 | The Little color management system [libaec](https://gitlab.dkrz.de/k202009/libaec) | 1.1.3 | Adaptive entropy coding library [libavif](https://aomediacodec.github.io/av1-avif/) | 1.2.0 | A friendly, portable C implementation of the AV1 Image File Format [libboost](http://www.boost.org/) | 1.88.0 | Free peer-reviewed portable C++ source libraries [libboost-python](http://www.boost.org/) | 1.88.0 | Free peer-reviewed portable C++ source libraries. [libcrc32c](https://github.com/google/crc32c) | 1.1.2 | CRC32C implementation with support for CPU-specific acceleration instructions [libcublas](https://developer.nvidia.com/cublas) | 12.6.4.1 | An implementation of BLAS (Basic Linear Algebra Subprograms) on top of the NVIDIA CUDA runtime. [libcublas-dev](https://developer.nvidia.com/cublas) | 12.6.4.1 | An implementation of BLAS (Basic Linear Algebra Subprograms) on top of the NVIDIA CUDA runtime. [libcudss0]() | 0.4.0.2 | The NVIDIA cuDSS runtime library. [libcufft](https://developer.nvidia.com/cufft) | 11.3.0.4 | cuFFT native runtime libraries [libcufft-dev](https://developer.nvidia.com/cufft) | 11.3.0.4 | cuFFT native runtime libraries [libcurand](https://developer.nvidia.com/curand) | 10.3.7.77 | cuRAND native runtime libraries [libcurand-dev](https://developer.nvidia.com/curand) | 10.3.7.77 | cuRAND native runtime libraries [libcurl](http://curl.haxx.se/) | 8.15.0 | Tool and library for transferring data with URL syntax [libcusolver](https://developer.nvidia.com/cusolver) | 11.7.1.2 | CUDA Linear Solver Library [libcusolver-dev](https://developer.nvidia.com/cusolver) | 11.7.1.2 | CUDA Linear Solver Library [libcusparse](https://developer.nvidia.com/cusparse) | 12.5.4.2 | CUDA Sparse Matrix Library [libcusparse-dev](https://developer.nvidia.com/cusparse) | 12.5.4.2 | CUDA Sparse Matrix Library [libffi](https://sourceware.org/libffi/) | 3.4.4 | Portable foreign-function interface library [libgd](http://libgd.github.io/) | 2.3.3 | Library for the dynamic creation of images [libglib](https://developer.gnome.org/glib/) | 2.86.0 | Provides core application building blocks for libraries and applications written in C [libgrpc](https://grpc.io/) | 1.67.1 | gRPC is a modern, open source, high-performance remote procedure call (RPC) framework [libiconv](https://www.gnu.org/software/libiconv/) | 1.18 | Convert text between different encodings [libintl](https://www.gnu.org/software/gettext) | 0.22.5 | Library that provides natural language support to programs [libintl-devel](https://www.gnu.org/software/gettext) | 0.22.5 | Library that provides natural language support to programs, development headers [libmagma](https://icl.utk.edu/magma/) | 2.8.0 | Matrix Algebra on GPU and Multicore Architectures [libnghttp2](https://www.nghttp2.org/) | 1.66.0 | HTTP/2 C library [libnpp](https://developer.nvidia.com/npp) | 12.3.1.54 | NPP native runtime libraries [libnvjitlink](https://developer.nvidia.com/cuda-toolkit) | 12.6.85 | CUDA nvJitLink library [libnvjpeg](https://developer.nvidia.com/nvjpeg) | 12.3.3.54 | nvJPEG native runtime libraries [libopencv](http://opencv.org/) | 4.11.0 | Computer vision and machine learning software library [libsentencepiece](https://github.com/google/sentencepiece/) | 0.2.0 | Unsupervised text tokenizer for Neural Network-based text generation. [libspatialindex](http://libspatialindex.github.io) | 1.9.3 | Extensible framework for robust spatial indexing [libsrt](https://github.com/Haivision/srt) | 1.5.3 | Secure, Reliable Transport [libtorch](https://pytorch.org/) | 2.5.1 | PyTorch is an optimized tensor library for deep learning using GPUs and CPUs. [libuv](http://libuv.org/) | 1.48.0 | Cross-platform asynchronous I/O [libwebp](https://developers.google.com/speed/webp/) | 1.3.2 | WebP image library [libwebp-base](https://developers.google.com/speed/webp/) | 1.3.2 | WebP image library, minimal base library [libxgboost](https://github.com/dmlc/xgboost) | 3.0.1 | eXtreme Gradient Boosting [libzopfli](https://github.com/google/zopfli) | 1.0.3 | A compression library for very good but slow deflate or zlib compression [lightgbm](https://github.com/Microsoft/LightGBM) | 4.6.0 | LightGBM is a gradient boosting framework that uses tree based learning algorithms [llvmlite](https://github.com/numba/llvmlite) | 0.44.0 | A lightweight LLVM python binding for writing JIT compilers [logical-unification](https://github.com/pythological/unification) | 0.4.6 | Logical unification in Python. [lomond](https://github.com/wildfoundry/dataplicity-lomond) | 0.3.3 | Websocket Client Library [mako](http://www.makotemplates.org) | 1.3.10 | Template library written in Python [mapclassify](https://pysal.org/mapclassify/) | 2.10.0 | Classification schemes for choropleth maps [marisa-trie](https://github.com/pytries/marisa-trie) | 1.3.1 | Trie-like structures for Python based on marisa-trie C++ library [markdown](http://packages.python.org/Markdown/) | 3.4.1 | Python implementation of Markdown [markdown-it-py](https://github.com/ExecutableBookProject/markdown-it-py) | 4.0.0 | Python port of markdown-it. Markdown parsing, done right! [mdurl](https://github.com/executablebooks/mdurl) | 0.1.2 | URL utilities for markdown-it-py parser [minikanren](https://github.com/pythological/kanren) | 1.0.3 | An extensible, lightweight relational/logic programming DSL written in pure Python [mistralai](https://github.com/mistralai/client-python) | 1.7.0 | Python client library for Mistral AI platform [ml-datasets](https://github.com/explosion/ml-datasets) | 0.2.0 | Machine learning dataset loaders for testing and example scripts [mljar-supervised](https://github.com/mljar/mljar-supervised) | 0.11.2 | Automated Machine Learning Pipeline with Feature Engineering and Hyper-Parameters Tuning [mmcv](https://github.com/open-mmlab/mmcv) | 2.0.1 | OpenMMLab Computer Vision Foundation [mmdet](https://github.com/open-mmlab/mmdetection) | 3.1.0 | OpenMMLab Detection Toolbox and Benchmark [mmdet3d](https://github.com/open-mmlab/mmdetection3d) | 1.2.0 | Next generation platform for general 3D object detection [mmengine](https://github.com/open-mmlab/mmengine) | 0.10.7 | Engine of OpenMMLab projects [mmsegmentation](https://github.com/open-mmlab/mmsegmentation) | 1.2.2 | semantic segmentation toolbox and benchmark [multidict](http://github.com/aio-libs/multidict) | 6.1.0 | Key-value pairs where keys are sorted and can reoccur [multipledispatch](https://github.com/mrocklin/multipledispatch/) | 1.0.0 | Multiple dispatch in Python [multiprocess](https://github.com/uqfoundation/multiprocess) | 0.70.15 | better multiprocessing and multithreading in python [munch](http://github.com/Infinidat/munch) | 2.5.0 | A dot-accessible dictionary (a la JavaScript objects) [murmurhash](https://github.com/explosion/murmurhash/) | 1.0.12 | A non-cryptographic hash function [nb_conda_kernels](https://github.com/Anaconda-Platform/nb_conda_kernels) | 2.5.2 | Launch Jupyter kernels for any installed conda environment [ninja_syntax](https://pypi.python.org/pypi/ninja_syntax/1.6.0) | 1.7.2 | Python module for generating .ninja files [numba](http://numba.github.com) | 0.61.2 | NumPy aware dynamic Python compiler using LLVM [nvidia-ml-py](https://pypi.org/project/nvidia-ml-py) | 13.580.82 | Python bindings to the NVIDIA Management Library [omegaconf](https://github.com/omry/omegaconf) | 2.3.0 | Flexible Python configuration system [onnx](https://github.com/onnx/onnx/) | 1.18.0 | Open Neural Network Exchange library [onnxruntime](https://onnxruntime.ai/) | 1.22.0 | High performance ML inferencing and training accelerator, Python library [onnxruntime-cpp](https://onnxruntime.ai/) | 1.22.0 | High performance ML inferencing and training accelerator, C++ runtime [open-clip-torch](https://github.com/mlfoundations/open_clip) | 2.32.0 | An open source implementation of CLIP. [openai](https://github.com/openai/openai-python) | 1.109.1 | Python client library for the OpenAI API [openai-clip](https://pypi.org/project/openai-clip) | 1.0.1 | CLIP (Contrastive Language-Image Pretraining), Predict the most relevant text snippet given an image [opencv](http://opencv.org/) | 4.11.0 | Computer vision and machine learning software library [openjpeg](http://www.openjpeg.org/) | 2.5.4 | An open-source JPEG 2000 codec written in C [optuna](https://optuna.org/) | 3.0.4 | A hyperparameter optimization framework [pango](http://www.pango.org/) | 1.50.7 | Text layout and rendering engine [pbr](https://launchpad.net/pbr) | 6.1.1 | Python Build Reasonableness [pccm](https://github.com/FindDefinition/PCCM) | 0.4.11 | Python C++ code manager [pcre2](http://www.pcre.org/) | 10.46 | Regular expression pattern matching using the same syntax and semantics as Perl 5 [pixman](http://www.pixman.org/) | 0.43.4 | A low-level software library for pixel manipulation [plotly](https://plot.ly/python/) | 5.20.0 | An interactive, browser-based graphing library for Python [portalocker](https://github.com/WoLpH/portalocker) | 3.0.0 | Portalocker is a library to provide an easy API to file locking. [preshed](https://github.com/explosion/preshed) | 3.0.9 | Cython Hash Table for Pre-Hashed Keys [prettytable](https://github.com/jazzband/prettytable) | 2.1.0 | Display tabular data in a visually appealing ASCII table format [proj4](https://proj4.org) | 9.6.2.1 | PROJ coordinate transformation software library [propcache](https://github.com/aio-libs/propcache) | 0.3.1 | Accelerated property cache [proto-plus](https://github.com/googleapis/proto-plus-python) | 1.26.1 | Beautiful, Pythonic protocol buffers. [py-opencv](http://opencv.org/) | 4.11.0 | Computer vision and machine learning software library [py-xgboost](https://github.com/dmlc/xgboost) | 3.0.1 | Python bindings for the scalable, portable and distributed gradient boosting XGBoost library [pyasn1](https://github.com/etingof/pyasn1) | 0.6.1 | ASN.1 types and codecs [pyasn1-modules](http://pyasn1.sourceforge.net/) | 0.4.2 | A collection of ASN.1-based protocols modules [pycares](https://pypi.org/project/pycares) | 4.10.0 | Python interface for c-ares [pycocotools](https://github.com/michael4338/pycocotools) | 2.0.7 | Python API for the MS-COCO dataset [pymc](https://github.com/pymc-devs/pymc) | 5.25.1 | Bayesian Stochastic Modelling in Python [pymc-base](https://www.pymc.io/welcome.html) | 5.25.1 | PyMC: Bayesian Stochastic Modelling in Python [pyopenssl](https://github.com/pyca/pyopenssl) | 25.0.0 | Python wrapper module around the OpenSSL library [pyperclip](https://github.com/asweigart/pyperclip) | 1.8.2 | A cross-platform clipboard module for Python [pyproj](http://jswhit.github.io/pyproj/) | 3.7.2 | Python interface to PROJ4 library for cartographic transformations [pyquaternion](http://kieranwynn.github.io/pyquaternion/) | 0.9.9 | Pythonic library for representing and using quaternions [pyreadline3](https://github.com/pyreadline3/pyreadline3) | 3.5.4 | A python implmementation of GNU readline, modernized [pytensor](https://github.com/pymc-devs/pytensor) | 2.32.0 | An optimizing compiler for evaluating mathematical expressions. [pytensor-base](https://github.com/pymc-devs/pytensor) | 2.32.0 | An optimizing compiler for evaluating mathematical expressions. [python-flatbuffers](https://google.github.io/flatbuffers/) | 23.5.26 | Python runtime library for use with the Flatbuffers serialization format [python-graphviz](http://github.com/xflr6/graphviz) | 0.20.1 | Simple Python interface for Graphviz [python-xxhash](https://github.com/ifduyue/python-xxhash) | 3.5.0 | Python binding for xxHash [pytorch](http://pytorch.org/) | 2.5.1 | PyTorch is an optimized tensor library for deep learning using GPUs and CPUs [pytorch-gpu](https://pytorch.org/) | 2.5.1 | PyTorch is an optimized tensor library for deep learning using GPUs and CPUs, GPU specific build [pywavelets](https://github.com/PyWavelets/pywt) | 1.9.0 | Discrete Wavelet Transforms in Python [pywin32](https://sourceforge.net/projects/pywin32) | 308 | Python extensions for Windows [rasterio](https://github.com/mapbox/rasterio) | 1.4.3 | Rasterio reads and writes geospatial raster datasets [resize-right](https://github.com/assafshocher/ResizeRight) | 0.0.2 | The correct way to resize images or tensors. For Numpy or Pytorch. [rich](https://github.com/Textualize/rich) | 13.9.4 | Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal [rsa](https://stuvel.eu/rsa) | 4.7.2 | Pure-Python RSA implementation [rtree](http://toblerity.github.com/rtree/) | 1.4.1 | R-Tree spatial index for Python GIS [s3transfer](https://github.com/boto/s3transfer) | 0.11.2 | An Amazon S3 Transfer Manager [safetensors](https://github.com/huggingface/safetensors) | 0.5.3 | Fast and Safe Tensor serialization [sam-2](https://github.com/facebookresearch/segment-anything-2) | 1.0.0.20241212 | SAM 2: Segment Anything in Images and Videos [samgeo](https://github.com/opengeos/segment-geospatial) | 3.6 | A collection of the essential packages to work with the Segment Geospatial (samgeo) stack. [scikit-image](http://scikit-image.org/) | 0.25.2 | Image processing routines for SciPy [scikit-learn](http://scikit-learn.org/stable/) | 1.6.1 | A set of python modules for machine learning and data mining [scikit-plot](https://github.com/reiinakano/scikit-plot/) | 0.3.12 | Plotting for scikit-learn objects [segment-anything](https://github.com/opengeos/segment-anything) | 1.0 | An unofficial Python package for Meta AI's Segment Anything Model [segment-anything-hq](https://github.com/SysCV/sam-hq) | 0.3 | Official Python package for Segment Anything in High Quality [segment-geospatial](https://github.com/opengeos/segment-geospatial) | 0.12.6 | A Python package for segmenting geospatial data with the Segment Anything Model (SAM) [sentencepiece](https://github.com/google/sentencepiece/) | 0.2.0 | Unsupervised text tokenizer and detokenizer [sentencepiece-python](https://github.com/google/sentencepiece/) | 0.2.0 | Unsupervised text tokenizer for Neural Network-based text generation. [sentencepiece-spm](https://github.com/google/sentencepiece/) | 0.2.0 | Unsupervised text tokenizer for Neural Network-based text generation. [shap](https://github.com/slundberg/shap) | 0.47.2 | A unified approach to explain the output of any machine learning model [shapely](https://github.com/Toblerity/Shapely) | 2.1.2 | Geometric objects, predicates, and operations [shellingham](https://github.com/sarugaku/shellingham) | 1.5.0 | Tool to Detect Surrounding Shell [simsimd](https://github.com/ashvardanian/SimSIMD) | 6.5.0 | Portable mixed-precision BLAS-like vector math library for x86 and ARM [sleef](https://sleef.org/) | 3.5.1 | SIMD library for evaluating elementary functions [slicer](https://github.com/interpretml/slicer) | 0.0.8 | A small package for big slicing [smart_open](https://github.com/RaRe-Technologies/smart_open) | 5.2.1 | Python library for efficient streaming of large files [snuggs](https://github.com/mapbox/snuggs) | 1.4.7 | Snuggs are s-expressions for NumPy [spacy](https://spacy.io/) | 3.8.7 | Industrial-strength Natural Language Processing [spacy-legacy](https://github.com/explosion/spacy-legacy) | 3.0.12 | spaCy NLP legacy functions and architectures for backwards compatibility [spacy-loggers](https://github.com/explosion/spacy-loggers) | 1.0.4 | Alternate loggers for spaCy pipeline training [spandrel](https://github.com/chaiNNer-org/spandrel) | 0.4.1 | Spandrel gives your project support for various PyTorch architectures. [spconv](https://github.com/traveller59/spconv) | 2.3.8 | Spatial sparse convolution [srsly](http://github.com/explosion/srsly) | 2.5.1 | Modern high-performance serialization utilities for Python [stevedore](http://docs.openstack.org/developer/stevedore/) | 5.1.0 | Manage dynamic plugins for Python applications [stringzilla](https://github.com/ashvardanian/StringZilla) | 3.12.6 | SIMD-accelerated string search, sort, hashes, fingerprints, & edit distances [supervision](https://github.com/roboflow/supervision) | 0.25.1 | A set of easy-to-use utils that will come in handy in any Computer Vision project [tabulate](https://bitbucket.org/astanin/python-tabulate) | 0.9.0 | Pretty-print tabular data in Python, a library and a command-line utility [tenacity](https://github.com/jd/tenacity) | 9.1.2 | Retry a flaky function whenever an exception occurs until it works [tensorboard](http://tensorflow.org/) | 2.20.0 | TensorBoard lets you watch Tensors Flow [tensorboard-data-server](https://github.com/tensorflow/tensorboard) | 0.7.0 | Data server for TensorBoard [tensorboardx](https://github.com/lanpa/tensorboard://github.com/lanpa/tensorboardX) | 2.6.2.2 | TensorBoardX lets you watch Tensors Flow without Tensorflow [termcolor](http://pypi.python.org/pypi/termcolor) | 2.1.0 | ANSII Color formatting for output in terminal [terminaltables](https://robpol86.github.io/terminaltables) | 3.1.0 | Generate simple tables in terminals from a nested list of strings [thinc](https://github.com/explosion/thinc/) | 8.3.6 | Learn super-sparse multi-class models [threadpoolctl](https://github.com/joblib/threadpoolctl) | 3.5.0 | Python helpers to control the threadpools of native libraries [tifffile](https://github.com/blink1073/tifffile) | 2024.12.12 | Read and write TIFF files [timm](https://github.com/rwightman/pytorch-image-models) | 1.0.14 | PyTorch image models [tokenizers](https://github.com/huggingface/tokenizers) | 0.21.0 | Fast State-of-the-Art Tokenizers optimized for Research and Production [tomesd](https://github.com/dbolya/tomesd) | 0.1.3 | ToMe (Token Merging) for SD speeds up diffusion by merging redundant tokens. [tomli](https://github.com/hukkin/tomli) | 2.2.1 | Tomli is a Python library for parsing TOML [torch-cluster](https://github.com/rusty1s/pytorch_cluster) | 1.6.3.20250812 | Extension library of highly optimized graph cluster algorithms for use in PyTorch [torch-geometric](https://github.com/rusty1s/pytorch_geometric) | 2.7.0 | Geometric deep learning extension library for PyTorch [torch-scatter](https://github.com/rusty1s/pytorch_scatter) | 2.1.2.20250812 | Extension library of highly optimized sparse update (scatter and segment) operations [torch-sparse](https://github.com/rusty1s/pytorch_sparse) | 0.6.18.20250812 | Extension library of optimized sparse matrix operations with autograd support [torch-spline-conv](https://github.com/rusty1s/pytorch_spline_conv) | 1.2.2.20250812 | PyTorch implementation of the spline-based convolution operator of SplineCNN [torchdiffeq](https://github.com/rtqichen/torchdiffeq) | 0.2.5 | ODE solvers and adjoint sensitivity analysis in PyTorch. [torchsde](https://github.com/google-research/torchsde) | 0.2.6 | SDE solvers and stochastic adjoint sensitivity analysis in PyTorch. [torchvision](http://pytorch.org/) | 0.20.1 | Image and video datasets and models for torch deep learning [trampoline](https://gitlab.com/ferreum/trampoline) | 0.1.2 | Simple and tiny yield-based trampoline implementation [transformers](https://github.com/huggingface/transformers) | 4.51.3 | State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch [trimesh](https://github.com/mikedh/trimesh) | 2.35.39 | Import, export, process, analyze and view triangular meshes. [typeguard](https://github.com/agronholm/typeguard) | 2.12.1 | Runtime type checker for Python [typer](https://github.com/tiangolo/typer) | 0.9.0 | A library for building CLI applications [types-requests](https://github.com/python/typeshed) | 2.30.0.0 | Typing stubs for requests [types-urllib3](https://github.com/python/typeshed) | 1.26.25.13 | Typing stubs for urllib3 [typing](https://docs.python.org/3.5/library/typing.html) | 3.10.0.0 | Type Hints for Python - backport for Python<3.5 [vertexai](https://pypi.org/project/vertexai/) | 1.71.1 | A Python SDK for Vertex AI [wasabi](http://github.com/ines/wasabi) | 1.1.3 | A lightweight console printing and formatting toolkit [weasel](https://github.com/explosion/weasel) | 0.4.1 | A small and easy workflow system [websockets](https://websockets.readthedocs.io) | 15.0.1 | A library for building WebSocket servers and clients in Python with a focus on correctness, simplicity, robustness, and performance. [werkzeug](http://werkzeug.pocoo.org/) | 3.1.3 | The Python WSGI Utility Library [winloop](https://github.com/Vizonex/Winloop) | 0.2.2 | Windows version of uvloop [wordcloud](https://github.com/amueller/word_cloud) | 1.9.4 | A little word cloud generator in Python [xarray-einstats](https://github.com/arviz-devs/xarray-einstats) | 0.9.1 | Stats, linear algebra and einops for xarray. [xgboost](https://github.com/dmlc/xgboost) | 3.0.1 | Scalable, portable and distributed Gradient Boosting (GBDT, GBRT or GBM) library [xmltodict](https://github.com/martinblech/xmltodict) | 0.14.2 | Makes working with XML feel like you are working with JSON [xxhash](https://www.xxhash.com) | 0.8.0 | Extremely fast hash algorithm [xyzservices](https://github.com/geopandas/xyzservices) | 2025.4.0 | Source of XYZ tiles providers [yapf](https://github.com/google/yapf) | 0.40.2 | A formatter for Python files [yarl](https://github.com/aio-libs/yarl) | 1.18.0 | Yet another URL library [zfp](https://computation.llnl.gov/projects/floating-point-compression) | 1.0.0 | Library for compressed numerical arrays that support high throughput read and write random access _py-xgboost-mutex | 2.0 | Metapackage for selecting the desired implementation of XGBoost
Manifest for Pro 3.5 / Server 12.0
Library NameVersionDescription
absl-py2.1.0Abseil Python Common Libraries
accelerate0.33.0Accelerate provides access to numerical libraries optimized for performance on Intel CPUs and NVidia GPUs
addict2.4.0Provides a dictionary whose items can be set using both attribute and item syntax
affine2.3.0Matrices describing affine transformation of the plane
aiohappyeyeballs2.4.4Async Happy Eyeballs for pre-resolved hosts
aiohttp3.11.10Async http client/server framework (asyncio)
aiosignal1.2.0A list of registered asynchronous callbacks
aisuite0.1.7Simple, unified interface to multiple Generative AI providers
albumentations1.0.3Fast and flexible image augmentation library
alembic1.13.3A database migration tool for SQLAlchemy
anthropic0.30.1Convenient access to the Anthropic REST API
antlr-python-runtime4.9.3This is the Python runtime for ANTLR.
aom3.12.0Alliance for Open Media video codec
astunparse1.6.3An AST unparser for Python
atomicwrites1.4.0Atomic file writes for Python
bitsandbytes0.43.3Accessible large language models via k-bit quantization for PyTorch.
boost1.82.0Boost provides peer-reviewed portable C++ source libraries
boto31.36.3Amazon Web Services SDK for Python
botocore1.36.3Low-level, data-driven core of boto 3
branca0.6.0Generate rich HTML + JS elements from Python
bzip21.0.8High-quality data compressor
cached-property1.5.2A decorator for caching properties in classes
cairo1.18.2A 2D graphics library with support for multiple output devices
catalogue2.0.10Super lightweight function registries for your library
catboost1.2.3Gradient boosting on decision trees library
category_encoders2.2.2A collection sklearn transformers to encode categorical variables as numeric
ccimport0.4.2Fast C++ Python binding
click-plugins1.1.1An extension module for click to enable registering CLI commands via setuptools entry-points
cliff3.8.0Command Line Interface Formulation Framework
cligj0.7.2Click params for commmand line interfaces to GeoJSON
cloudpathlib0.16.0pathlib.Path-style classes for interacting with files in different cloud storage services.
cmaes0.8.2Blackbox optimization with the Covariance Matrix Adaptation Evolution Strategy
cmd22.4.3A tool for building interactive command line apps
coloredlogs15.0.1Colored terminal output for Python's logging module
colorlog5.0.1Log formatting with colors!
colour0.1.5Python color representations manipulation library (RGB, HSL, web, ...)
confection0.1.4The sweetest config system for Python
cudatoolkit11.8.0NVIDIA's CUDA toolkit
cudnn8.7.0.84NVIDIA's cuDNN deep neural network acceleration library
cumm0.4.11CUda Matrix Multiply library
cymem2.0.6Manage calls to calloc/free through Cython
cython3.0.11The Cython compiler for writing C extensions for the Python language
cython-blis0.7.9Fast matrix-multiplication as a self-contained Python library – no system dependencies!
dataclasses0.8A backport of the dataclasses module for Python 3.6
datasets2.16.1HuggingFace/Datasets is an open library of NLP datasets.
deep-learning-essentials3.5Expansive collection of deep learning packages
descartes1.1.0Use geometric objects as matplotlib paths and patches
detreg1.0.0PyTorch Wrapper for CUDA Functions of Multi-Scale Deformable Attention
dill0.3.7Serialize all of python (almost)
distro1.9.0Provides information about the OS distribution it runs on
dm-tree0.1.7A library for working with nested data structures
dtreeviz1.3.7Decision tree visualization
einops0.7.0A new flavor of deep learning operations
ensemble-boxes1.0.8Methods for ensembling boxes from object detection models
expat2.6.3Expat XML parser library in C
fairlearn0.8.0Simple and easy fairness assessment and unfairness mitigation
fastai1.0.63fastai makes deep learning with PyTorch faster, more accurate, and easier
fastprogress0.2.3A fast and simple progress bar for Jupyter Notebook and console
fasttext0.9.2Efficient text classification and representation learning
ffmpeg7.0.3Cross-platform solution to record, convert and stream audio and video
filelock3.16.1A platform independent file lock
fiona1.9.6OGR's neat, nimble, no-nonsense API for Python programmers
fire0.4.0A library for creating CLIs from absolutely any Python object
folium0.14.0Make beautiful maps with Leaflet.js and Python
fribidi1.0.10The Free Implementation of the Unicode Bidirectional Algorithm
frozenlist1.5.0A list-like structure which implements collections.abc.MutableSequence
gast0.5.3Python AST that abstracts the underlying Python version
gdown5.2.0Download large files from Google Drive.
geopandas1.0.1Geographic pandas extensions, base package
geopandas-base1.0.1Geographic pandas extensions, metapackage
geos3.12.1A C++ port of the Java Topology Suite (JTS)
getopt-win320.1A port of getopt for Visual C++
gflags2.2.2A C++ library that implements commandline flags processing
giflib5.2.2Library for reading and writing gif images
glib2.78.4Provides core application building blocks for libraries and applications written in C
glib-tools2.78.4Provides core application building blocks for libraries and applications written in C, command line tools
google-auth2.38.0Google authentication library for Python
google-auth-oauthlib1.2.1Google Authentication Library, oauthlib integration with google-auth
google-pasta0.2.0pasta is an AST-based Python refactoring library
gputil1.4.0NVIDIA GPU status from Python
graphite21.3.14A "smart font" system that handles the complexities of lesser-known languages of the world
graphviz8.1.0Open Source graph visualization software
groq0.9.0The official Python library for the groq API
groundingdino-py0.4.0open-set object detector
grpcio1.46.3HTTP/2-based RPC framework
gts0.7.6GNU Triangulated Surface Library
h3-py3.7.6H3 Hexagonal Hierarchical Geospatial Indexing System
harfbuzz10.2.0An OpenType text shaping engine
huggingface_hub0.29.1Client library to download and publish models on the huggingface.co hub
humanfriendly10.0Human friendly output for text interfaces using Python
hydra-core1.3.2A framework for elegantly configuring complex applications
icu73.1International Components for Unicode
imageio2.37.0A Python library for reading and writing image data
imgaug0.4.0Image augmentation for machine learning experiments
inplace-abn1.1.0In-Place Activated BatchNorm
iopath0.1.10Lightweight I/O abstraction library
jiter0.6.1Fast iterable JSON parser.
jmespath1.0.1Query language for JSON
joblib1.4.2Python function as pipeline jobs
js2py0.74JavaScript to Python Translator & JavaScript interpreter written in 100% pure Python.
keras2.13.1Deep Learning Library for Theano and TensorFlow
langcodes3.3.0Labels and compares human languages in a standardized way
lark1.1.2a modern parsing library
laspy2.5.4A Python library for reading, modifying and creating LAS files
lazrs-python0.6.2Python bindings for laz-rs, a Rust package for working with LAS data
lazy_loader0.4Easily load subpackages and functions on demand
libboost1.82.0Free peer-reviewed portable C++ source libraries
libclang14.0.6Development headers and libraries for the Clang compiler
libclang1314.0.6Development headers and libraries for the Clang compiler
libcurl8.9.1Tool and library for transferring data with URL syntax
libffi3.4.4Portable foreign-function interface library
libgd2.3.3Library for the dynamic creation of images
libglib2.78.4Provides core application building blocks for libraries and applications written in C
libiconv1.16Convert text between different encodings
libnghttp21.62.1HTTP/2 C library
libopencv4.8.1Computer vision and machine learning software library
libspatialindex1.9.3Extensible framework for robust spatial indexing
libsrt1.5.3Secure, Reliable Transport
libuv1.40.0Cross-platform asynchronous I/O
libwebp1.3.2WebP image library
libwebp-base1.3.2WebP image library, minimal base library
libxgboost2.0.3eXtreme Gradient Boosting
lightgbm4.6.0LightGBM is a gradient boosting framework that uses tree based learning algorithms
llvmlite0.42.0A lightweight LLVM python binding for writing JIT compilers
mako1.2.3Template library written in Python
mapclassify2.5.0Classification schemes for choropleth maps
markdown3.4.1Python implementation of Markdown
markdown-it-py2.2.0Python port of markdown-it. Markdown parsing, done right!
mdurl0.1.0URL utilities for markdown-it-py parser
mljar-supervised0.11.2Automated Machine Learning Pipeline with Feature Engineering and Hyper-Parameters Tuning
mmcv2.0.1OpenMMLab Computer Vision Foundation
mmdet3.1.0OpenMMLab Detection Toolbox and Benchmark
mmdet3d1.2.0Next generation platform for general 3D object detection
mmengine0.8.5Engine of OpenMMLab projects
mmsegmentation1.1.2semantic segmentation toolbox and benchmark
multidict6.1.0Key-value pairs where keys are sorted and can reoccur
multiprocess0.70.15better multiprocessing and multithreading in python
munch2.5.0A dot-accessible dictionary (a la JavaScript objects)
murmurhash1.0.12A non-cryptographic hash function
nb_conda_kernels2.5.1Launch Jupyter kernels for any installed conda environment
neural-structured-learning1.4.0Train neural networks with structured signals
ninja_syntax1.7.2Python module for generating .ninja files
numba0.59.1NumPy aware dynamic Python compiler using LLVM
nvidia-ml-py37.352.0Python bindings to the NVIDIA Management Library
omegaconf2.3.0Flexible Python configuration system
onnx1.13.1Open Neural Network Exchange library
onnx-tf1.9.0Experimental Tensorflow Backend for ONNX
onnxruntime1.18.1High performance ML inferencing and training accelerator, Python library
onnxruntime-cpp1.18.1High performance ML inferencing and training accelerator, C++ runtime
openai1.60.1Python client library for the OpenAI API
opencv4.8.1Computer vision and machine learning software library
opt-einsum3.3.0Optimizing einsum functions in NumPy, Tensorflow, Dask, and more with contraction order optimization
optuna3.0.4A hyperparameter optimization framework
pango1.50.7Text layout and rendering engine
pathy0.10.3A Path interface for local and cloud bucket storage
pbr5.6.0Python Build Reasonableness
pccm0.4.11Python C++ code manager
pcre210.42Regular expression pattern matching using the same syntax and semantics as Perl 5
pixman0.43.4A low-level software library for pixel manipulation
plotly5.20.0An interactive, browser-based graphing library for Python
portalocker3.0.0Portalocker is a library to provide an easy API to file locking.
portaudio19.6.0A cross platform, open-source, audio I/O library
preshed3.0.6Cython Hash Table for Pre-Hashed Keys
prettytable2.1.0Display tabular data in a visually appealing ASCII table format
proj49.4.1PROJ coordinate transformation software library
propcache0.2.0Accelerated property cache
py-boost1.82.0Free peer-reviewed portable C++ source libraries
py-opencv4.8.1Computer vision and machine learning software library
py-xgboost2.0.3Python bindings for the scalable, portable and distributed gradient boosting XGBoost library
pyasn10.4.8ASN.1 types and codecs
pyasn1-modules0.2.8A collection of ASN.1-based protocols modules
pycocotools2.0.7Python API for the MS-COCO dataset
pyjsparser2.7.1Fast javascript parser (based on esprima.js)
pyopenssl25.0.0Python wrapper module around the OpenSSL library
pyperclip1.8.2A cross-platform clipboard module for Python
pyproj3.6.1Python interface to PROJ4 library for cartographic transformations
pyquaternion0.9.9Pythonic library for representing and using quaternions
pyreadline33.4.1A python implmementation of GNU readline, modernized
python-flatbuffers23.5.26Python runtime library for use with the Flatbuffers serialization format
python-graphviz0.20.1Simple Python interface for Graphviz
python-sounddevice0.4.4Play and record sound with Python
python-tzdata2023.3Provider of IANA time zone data
python-xxhash3.5.0Python binding for xxHash
pytorch2.0.1PyTorch is an optimized tensor library for deep learning using GPUs and CPUs
pywavelets1.8.0Discrete Wavelet Transforms in Python
pywin32308Python extensions for Windows
rasterio1.3.10Rasterio reads and writes geospatial raster datasets
rich13.3.5Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal
rsa4.7.2Pure-Python RSA implementation
rtree1.0.1R-Tree spatial index for Python GIS
s3transfer0.11.2An Amazon S3 Transfer Manager
safetensors0.5.3Fast and Safe Tensor serialization
sam-21.0SAM 2: Segment Anything in Images and Videos
samgeo3.5A collection of the essential packages to work with the Segment Geospatial (samgeo) stack.
scikit-image0.25.2Image processing routines for SciPy
scikit-learn1.6.1A set of python modules for machine learning and data mining
scikit-plot0.3.12Plotting for scikit-learn objects
segment-anything1.0An unofficial Python package for Meta AI's Segment Anything Model
segment-anything-hq0.3Official Python package for Segment Anything in High Quality
segment-geospatial0.12.4A Python package for segmenting geospatial data with the Segment Anything Model (SAM)
sentencepiece0.1.99Unsupervised text tokenizer and detokenizer
shap0.46.0A unified approach to explain the output of any machine learning model
shapely2.0.5Geometric objects, predicates, and operations
shellingham1.5.0Tool to Detect Surrounding Shell
slicer0.0.8A small package for big slicing
smart_open5.2.1Python library for efficient streaming of large files
snuggs1.4.7Snuggs are s-expressions for NumPy
spacy3.7.2Industrial-strength Natural Language Processing
spacy-legacy3.0.12spaCy NLP legacy functions and architectures for backwards compatibility
spacy-loggers1.0.4Alternate loggers for spaCy pipeline training
spconv2.3.6Spatial sparse convolution
srsly2.5.1Modern high-performance serialization utilities for Python
stevedore5.1.0Manage dynamic plugins for Python applications
supervision0.25.1A set of easy-to-use utils that will come in handy in any Computer Vision project
tabulate0.9.0Pretty-print tabular data in Python, a library and a command-line utility
tenacity9.0.0Retry a flaky function whenever an exception occurs until it works
tensorboard2.13.0TensorBoard lets you watch Tensors Flow
tensorboard-data-server0.7.0Data server for TensorBoard
tensorboard-plugin-wit1.6.0What-If Tool TensorBoard plugin
tensorboardx2.6.2.2TensorBoardX lets you watch Tensors Flow without Tensorflow
tensorflow2.13.0TensorFlow is a machine learning library
tensorflow-addons0.22.0Useful extra functionality for TensorFlow
tensorflow-estimator2.13.0TensorFlow Estimator
tensorflow-hub0.16.1A library for transfer learning by reusing parts of TensorFlow models
tensorflow-model-optimization0.7.5TensorFlow Model Optimization Toolkit
tensorflow-probability0.20.1TensorFlow Probability is a library for probabilistic reasoning and statistical analysis in TensorFlow
termcolor2.1.0ANSII Color formatting for output in terminal
terminaltables3.1.0Generate simple tables in terminals from a nested list of strings
tflite-model-maker0.3.4A model customization library for on-device applications
tflite-support0.4.4TensorFlow Lite Support for deploying TFLite models onto ombile devices
thinc8.2.2Learn super-sparse multi-class models
threadpoolctl3.5.0Python helpers to control the threadpools of native libraries
tifffile2024.12.12Read and write TIFF files
timm0.4.12PyTorch image models
tokenizers0.21.0Fast State-of-the-Art Tokenizers optimized for Research and Production
torch-cluster1.6.3Extension library of highly optimized graph cluster algorithms for use in PyTorch
torch-geometric2.4.0Geometric deep learning extension library for PyTorch
torch-scatter2.1.2Extension library of highly optimized sparse update (scatter and segment) operations
torch-sparse0.6.18Extension library of optimized sparse matrix operations with autograd support
torch-spline-conv1.2.2PyTorch implementation of the spline-based convolution operator of SplineCNN
torchvision0.15.2Image and video datasets and models for torch deep learning
torchvision-cpp0.15.2Image and video datasets and models for torch deep learning, C++ interface
transformers4.47.0State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch
trimesh2.35.39Import, export, process, analyze and view triangular meshes.
typeguard2.12.1Runtime type checker for Python
typer0.9.0A library for building CLI applications
typing3.10.0.0Type Hints for Python - backport for Python<3.5
tzlocal5.2tzinfo object for the local timezone
wasabi0.9.1A lightweight console printing and formatting toolkit
weasel0.3.4A small and easy workflow system
werkzeug3.1.3The Python WSGI Utility Library
wordcloud1.9.4A little word cloud generator in Python
xgboost2.0.3Scalable, portable and distributed Gradient Boosting (GBDT, GBRT or GBM) library
xmltodict0.14.2Makes working with XML feel like you are working with JSON
xxhash0.8.0Extremely fast hash algorithm
xyzservices2022.9.0Source of XYZ tiles providers
yapf0.40.2A formatter for Python files
yarl1.18.0Yet another URL library
_py-xgboost-mutex2.0Metapackage for selecting the desired implementation of XGBoost
Manifest for Pro 3.4 / Server 11.4
Library NameVersionDescription
absl-py2.1.0Abseil Python Common Libraries
accelerate0.33.0Accelerate provides access to numerical libraries optimized for performance on Intel CPUs and NVidia GPUs
addict2.4.0Provides a dictionary whose items can be set using both attribute and item syntax
affine2.3.0Matrices describing affine transformation of the plane
aiohttp3.9.5Async http client/server framework (asyncio)
aiosignal1.2.0A list of registered asynchronous callbacks
albumentations1.0.3Fast and flexible image augmentation library
alembic1.8.1A database migration tool for SQLAlchemy
aom3.9.1Alliance for Open Media video codec
astunparse1.6.3An AST unparser for Python
atomicwrites1.4.0Atomic file writes for Python
bitsandbytes0.43.3Accessible large language models via k-bit quantization for PyTorch.
blosc1.21.3A blocking, shuffling and loss-less compression library that can be faster than memcpy()
boost1.82.0Boost provides peer-reviewed portable C++ source libraries
branca0.6.0Generate rich HTML + JS elements from Python
bzip21.0.8High-quality data compressor
cairo1.18.2A 2D graphics library with support for multiple output devices
catalogue2.0.10Super lightweight function registries for your library
catboost1.2.3Gradient boosting on decision trees library
category_encoders2.2.2A collection sklearn transformers to encode categorical variables as numeric
ccimport0.4.2Fast C++ Python binding
charls2.2.0CharLS, a C++ JPEG-LS library implementation
click-plugins1.1.1An extension module for click to enable registering CLI commands via setuptools entry-points
cliff3.8.0Command Line Interface Formulation Framework
cligj0.7.2Click params for command line interfaces to GeoJSON
cloudpathlib0.16.0pathlib.Path-style classes for interacting with files in different cloud storage services.
cmaes0.8.2Blackbox optimization with the Covariance Matrix Adaptation Evolution Strategy
cmd22.4.3A tool for building interactive command line apps
coloredlogs15.0.1Colored terminal output for Python's logging module
colorlog5.0.1Log formatting with colors!
colour0.1.5Python color representations manipulation library (RGB, HSL, web, ...)
confection0.1.4The sweetest config system for Python
cudatoolkit11.8.0NVIDIA's CUDA toolkit
cudnn8.7.0.84NVIDIA's cuDNN deep neural network acceleration library
cumm0.4.11CUda Matrix Multiply library
cymem2.0.6Manage calls to calloc/free through Cython
cython3.0.10The Cython compiler for writing C extensions for the Python language
cython-blis0.7.9Fast matrix-multiplication as a self-contained Python library – no system dependencies!
datasets2.16.1HuggingFace/Datasets is an open library of NLP datasets.
dav1d1.2.1The fastest AV1 decoder on all platforms
deep-learning-essentials3.4Expansive collection of deep learning packages
descartes1.1.0Use geometric objects as matplotlib paths and patches
detreg1.0.0PyTorch Wrapper for CUDA Functions of Multi-Scale Deformable Attention
dill0.3.7Serialize all of python (almost)
dm-tree0.1.7A library for working with nested data structures
dtreeviz1.3.7Decision tree visualization
einops0.7.0A new flavor of deep learning operations
ensemble-boxes1.0.8Methods for ensembling boxes from object detection models
expat2.6.3Expat XML parser library in C
fairlearn0.8.0Simple and easy fairness assessment and unfairness mitigation
fastai1.0.63fastai makes deep learning with PyTorch faster, more accurate, and easier
fastprogress0.2.3A fast and simple progress bar for Jupyter Notebook and console
fasttext0.9.2Efficient text classification and representation learning
ffmpeg7.0.0Cross-platform solution to record, convert and stream audio and video
filelock3.13.1A platform independent file lock
fiona1.9.6OGR's neat, nimble, no-nonsense API for Python programmers
fire0.4.0A library for creating CLIs from absolutely any Python object
folium0.14.0Make beautiful maps with Leaflet.js and Python
fribidi1.0.10The Free Implementation of the Unicode Bidirectional Algorithm
frozenlist1.4.0A list-like structure which implements collections.abc.MutableSequence
gast0.5.3Python AST that abstracts the underlying Python version
gdown5.2.0Download large files from Google Drive.
geopandas1.0.1Geographic pandas extensions, base package
geopandas-base1.0.1Geographic pandas extensions, metapackage
geos3.12.1A C++ port of the Java Topology Suite (JTS)
getopt-win320.1A port of getopt for Visual C++
gflags2.2.2A C++ library that implements commandline flags processing
giflib5.2.1Library for reading and writing gif images
glib2.78.4Provides core application building blocks for libraries and applications written in C
glib-tools2.78.4Provides core application building blocks for libraries and applications written in C, command line tools
google-auth2.29.0Google authentication library for Python
google-auth-oauthlib0.5.2Google Authentication Library, oauthlib integration with google-auth
google-pasta0.2.0pasta is an AST-based Python refactoring library
gputil1.4.0NVIDIA GPU status from Python
graphite21.3.14A "smart font" system that handles the complexities of lesser-known languages of the world
graphviz8.1.0Open Source graph visualization software
groundingdino-py0.4.0open-set object detector
grpcio1.46.3HTTP/2-based RPC framework
gts0.7.6GNU Triangulated Surface Library
h3-py3.7.6H3 Hexagonal Hierarchical Geospatial Indexing System
harfbuzz4.3.0An OpenType text shaping engine
huggingface_hub0.24.3Client library to download and publish models on the huggingface.co hub
humanfriendly10.0Human friendly output for text interfaces using Python
icu73.1International Components for Unicode
imagecodecs2023.1.23Image transformation, compression, and decompression codecs
imageio2.33.1A Python library for reading and writing image data
imgaug0.4.0Image augmentation for machine learning experiments
inplace-abn1.1.0In-Place Activated BatchNorm
joblib1.4.2Python function as pipeline jobs
js2py0.74JavaScript to Python Translator & JavaScript interpreter written in 100% pure Python.
jxrlib1.1jxrlib - JPEG XR Library by Microsoft, built from Debian hosted sources.
keras2.13.1Deep Learning Library for Theano and TensorFlow
langcodes3.3.0Labels and compares human languages in a standardized way
lark1.1.2a modern parsing library
laspy1.7.1A Python library for reading, modifying and creating LAS files
lazy_loader0.4Easily load subpackages and functions on demand
lcms22.16The Little color management system
lerc3.0Limited Error Raster Compression
libaec1.0.4Adaptive entropy coding library
libavif1.1.1A friendly, portable C implementation of the AV1 Image File Format
libboost1.82.0Free peer-reviewed portable C++ source libraries
libclang14.0.6Development headers and libraries for the Clang compiler
libclang1314.0.6Development headers and libraries for the Clang compiler
libcurl8.9.1Tool and library for transferring data with URL syntax
libffi3.4.4Portable foreign-function interface library
libgd2.3.3Library for the dynamic creation of images
libglib2.78.4Provides core application building blocks for libraries and applications written in C
libiconv1.16Convert text between different encodings
libnghttp21.62.1HTTP/2 C library
libopencv4.8.1Computer vision and machine learning software library
libspatialindex1.9.3Extensible framework for robust spatial indexing
libsrt1.5.3Secure, Reliable Transport
libuv1.40.0Cross-platform asynchronous I/O
libwebp1.3.2WebP image library
libwebp-base1.3.2WebP image library, minimal base library
libxgboost2.0.3eXtreme Gradient Boosting
libzopfli1.0.3A compression library for very good but slow deflate or zlib compression
lightgbm4.3.0LightGBM is a gradient boosting framework that uses tree based learning algorithms
llvmlite0.42.0A lightweight LLVM python binding for writing JIT compilers
mako1.2.3Template library written in Python
mapclassify2.5.0Classification schemes for choropleth maps
markdown3.4.1Python implementation of Markdown
markdown-it-py2.2.0Python port of markdown-it. Markdown parsing, done right!
mdurl0.1.0URL utilities for markdown-it-py parser
mljar-supervised0.11.2Automated Machine Learning Pipeline with Feature Engineering and Hyper-Parameters Tuning
mmcv2.0.1OpenMMLab Computer Vision Foundation
mmdet3.1.0OpenMMLab Detection Toolbox and Benchmark
mmdet3d1.2.0Next generation platform for general 3D object detection
mmengine0.8.5Engine of OpenMMLab projects
mmsegmentation1.1.2semantic segmentation toolbox and benchmark
motmetrics1.1.3Benchmark multiple object trackers (MOT) in Python
multidict6.0.4Key-value pairs where keys are sorted and can reoccur
multiprocess0.70.15better multiprocessing and multithreading in python
munch2.5.0A dot-accessible dictionary (a la JavaScript objects)
murmurhash1.0.7A non-cryptographic hash function
nb_conda_kernels2.5.1Launch Jupyter kernels for any installed conda environment
neural-structured-learning1.4.0Train neural networks with structured signals
ninja_syntax1.7.2Python module for generating .ninja files
numba0.59.1NumPy aware dynamic Python compiler using LLVM
nuscenes-devkit1.1.3The devkit of the nuScenes dataset
nvidia-ml-py37.352.0Python bindings to the NVIDIA Management Library
onnx1.13.1Open Neural Network Exchange library
onnx-tf1.9.0Experimental Tensorflow Backend for ONNX
onnxruntime1.18.1High performance ML inferencing and training accelerator, Python library
onnxruntime-cpp1.18.1High performance ML inferencing and training accelerator, C++ runtime
opencv4.8.1Computer vision and machine learning software library
openjpeg2.5.0An open-source JPEG 2000 codec written in C
opt-einsum3.3.0Optimizing einsum functions in NumPy, Tensorflow, Dask, and more with contraction order optimization
optuna3.0.4A hyperparameter optimization framework
pango1.50.7Text layout and rendering engine
pathy0.10.3A Path interface for local and cloud bucket storage
pbr5.6.0Python Build Reasonableness
pccm0.4.11Python C++ code manager
pcre210.42Regular expression pattern matching using the same syntax and semantics as Perl 5
pixman0.43.4A low-level software library for pixel manipulation
plotly5.20.0An interactive, browser-based graphing library for Python
portalocker2.3.0Portalocker is a library to provide an easy API to file locking.
portaudio19.6.0A cross platform, open-source, audio I/O library
preshed3.0.6Cython Hash Table for Pre-Hashed Keys
prettytable2.1.0Display tabular data in a visually appealing ASCII table format
proj49.4.1PROJ coordinate transformation software library
py-boost1.82.0Free peer-reviewed portable C++ source libraries
py-opencv4.8.1Computer vision and machine learning software library
py-xgboost2.0.3Python bindings for the scalable, portable and distributed gradient boosting XGBoost library
pyasn10.4.8ASN.1 types and codecs
pyasn1-modules0.2.8A collection of ASN.1-based protocols modules
pycocotools2.0.7Python API for the MS-COCO dataset
pyjsparser2.7.1Fast javascript parser (based on esprima.js)
pyopenssl24.2.1Python wrapper module around the OpenSSL library
pyperclip1.8.2A cross-platform clipboard module for Python
pyproj3.6.1Python interface to PROJ4 library for cartographic transformations
pyquaternion0.9.9Pythonic library for representing and using quaternions
pyreadline33.4.1A python implmementation of GNU readline, modernized
python-flatbuffers23.5.26Python runtime library for use with the Flatbuffers serialization format
python-graphviz0.20.1Simple Python interface for Graphviz
python-sounddevice0.4.4Play and record sound with Python
python-tzdata2023.3Provider of IANA time zone data
python-xxhash2.0.2Python binding for xxHash
pytorch2.0.1PyTorch is an optimized tensor library for deep learning using GPUs and CPUs
pywin32305Python extensions for Windows
rasterio1.3.10Rasterio reads and writes geospatial raster datasets
rich13.3.5Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal
rsa4.7.2Pure-Python RSA implementation
rtree1.0.1R-Tree spatial index for Python GIS
safetensors0.4.2Fast and Safe Tensor serialization
samgeo3.4A collection of the essential packages to work with the Segment Geospatial (samgeo) stack.
scikit-image0.22.0Image processing routines for SciPy
scikit-learn1.3.0A set of python modules for machine learning and data mining
scikit-plot0.3.7Plotting for scikit-learn objects
segment-anything1.0An unofficial Python package for Meta AI's Segment Anything Model
segment-anything-hq0.3Official Python package for Segment Anything in High Quality
segment-geospatial0.10.2A Python package for segmenting geospatial data with the Segment Anything Model (SAM)
sentencepiece0.1.99Unsupervised text tokenizer and detokenizer
shap0.42.1A unified approach to explain the output of any machine learning model
shapely2.0.5Geometric objects, predicates, and operations
shellingham1.5.0Tool to Detect Surrounding Shell
slicer0.0.7A small package for big slicing
smart_open5.2.1Python library for efficient streaming of large files
snuggs1.4.7Snuggs are s-expressions for NumPy
spacy3.7.2Industrial-strength Natural Language Processing
spacy-legacy3.0.12spaCy NLP legacy functions and architectures for backwards compatibility
spacy-loggers1.0.4Alternate loggers for spaCy pipeline training
spconv2.3.6Spatial sparse convolution
srsly2.4.8Modern high-performance serialization utilities for Python
stevedore5.1.0Manage dynamic plugins for Python applications
supervision0.6.0A set of easy-to-use utils that will come in handy in any Computer Vision project
tabulate0.9.0Pretty-print tabular data in Python, a library and a command-line utility
tbb2021.8.0High level abstract threading library
tenacity8.2.3Retry a flaky function whenever an exception occurs until it works
tensorboard2.13.0TensorBoard lets you watch Tensors Flow
tensorboard-data-server0.7.0Data server for TensorBoard
tensorboard-plugin-wit1.6.0What-If Tool TensorBoard plugin
tensorboardx2.6.2.2TensorBoardX lets you watch Tensors Flow without Tensorflow
tensorflow2.13.0TensorFlow is a machine learning library
tensorflow-addons0.22.0Useful extra functionality for TensorFlow
tensorflow-estimator2.13.0TensorFlow Estimator
tensorflow-hub0.16.1A library for transfer learning by reusing parts of TensorFlow models
tensorflow-io-gcs-filesystem0.31.0Dataset, streaming, and file system extensions
tensorflow-model-optimization0.7.5TensorFlow Model Optimization Toolkit
tensorflow-probability0.20.1TensorFlow Probability is a library for probabilistic reasoning and statistical analysis in TensorFlow
termcolor2.1.0ANSII Color formatting for output in terminal
terminaltables3.1.0Generate simple tables in terminals from a nested list of strings
tflite-model-maker0.3.4A model customization library for on-device applications
tflite-support0.4.4TensorFlow Lite Support for deploying TFLite models onto ombile devices
thinc8.2.2Learn super-sparse multi-class models
threadpoolctl3.5.0Python helpers to control the threadpools of native libraries
tifffile2023.4.12Read and write TIFF files
timm0.4.12PyTorch image models
tokenizers0.19.1Fast State-of-the-Art Tokenizers optimized for Research and Production
torch-cluster1.6.3Extension library of highly optimized graph cluster algorithms for use in PyTorch
torch-geometric2.4.0Geometric deep learning extension library for PyTorch
torch-scatter2.1.2Extension library of highly optimized sparse update (scatter and segment) operations
torch-sparse0.6.18Extension library of optimized sparse matrix operations with autograd support
torch-spline-conv1.2.2PyTorch implementation of the spline-based convolution operator of SplineCNN
torchvision0.15.2Image and video datasets and models for torch deep learning
torchvision-cpp0.15.2Image and video datasets and models for torch deep learning, C++ interface
transformers4.43.4State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch
trimesh2.35.39Import, export, process, analyze and view triangular meshes.
typeguard2.12.1Runtime type checker for Python
typer0.9.0A library for building CLI applications
typing3.10.0.0Type Hints for Python - backport for Python<3.5
tzlocal5.2tzinfo object for the local timezone
wasabi0.9.1A lightweight console printing and formatting toolkit
weasel0.3.4A small and easy workflow system
werkzeug3.0.3The Python WSGI Utility Library
wordcloud1.9.3A little word cloud generator in Python
xgboost2.0.3Scalable, portable and distributed Gradient Boosting (GBDT, GBRT or GBM) library
xmltodict0.13.0Makes working with XML feel like you are working with JSON
xxhash0.8.0Extremely fast hash algorithm
xyzservices2022.9.0Source of XYZ tiles providers
yapf0.40.2A formatter for Python files
yarl1.9.3Yet another URL library
zfp1.0.0Library for compressed numerical arrays that support high throughput read and write random access
_py-xgboost-mutex2.0Metapackage for selecting the desired implementation of XGBoost
Manifest for Pro 3.3 / Server 11.3
Library NameVersionDescription
absl-py2.1.0Abseil Python Common Libraries
addict3.4.0Provides a dictionary whose items can be set using both attribute and item syntax
affine2.3.0Matrices describing affine transformation of the plane
aiohttp3.9.5Async http client/server framework (asyncio)
aiosignal1.2.0A list of registered asynchronous callbacks
albumentations1.0.3Fast and flexible image augmentation library
alembic1.8.1A database migration tool for SQLAlchemy
annotated-types0.6.0Reusable constraint types to use with typing.Annotated
aom3.6.0Alliance for Open Media video codec
astunparse1.6.3An AST unparser for Python
atomicwrites1.4.0Atomic file writes for Python
blosc1.21.3A blocking, shuffling and loss-less compression library that can be faster than memcpy()
boost1.82.0Boost provides peer-reviewed portable C++ source libraries
branca0.6.0Generate rich HTML + JS elements from Python
bzip21.0.8High-quality data compressor
cairo1.16.0A 2D graphics library with support for multiple output devices
catalogue2.0.10Super lightweight function registries for your library
catboost1.2.3Gradient boosting on decision trees library
category_encoders2.2.2A collection sklearn transformers to encode categorical variables as numeric
ccimport0.4.2Fast C++ Python binding
charls2.2.0CharLS, a C++ JPEG-LS library implementation
click-plugins1.1.1An extension module for click to enable registering CLI commands via setuptools entry-points
cliff3.8.0Command Line Interface Formulation Framework
cligj0.7.2Click params for command line interfaces to GeoJSON
cloudpathlib0.16.0pathlib.Path-style classes for interacting with files in different cloud storage services.
cmaes0.8.2Blackbox optimization with the Covariance Matrix Adaptation Evolution Strategy
cmd22.4.3A tool for building interactive command line apps
coloredlogs15.0.1Colored terminal output for Python's logging module
colorlog5.0.1Log formatting with colors!
colour0.1.5Python color representations manipulation library (RGB, HSL, web, ...)
confection0.1.4The sweetest config system for Python
cudatoolkit11.8.0NVIDIA's CUDA toolkit
cudnn8.7.0.84NVIDIA's cuDNN deep neural network acceleration library
cumm0.4.11CUda Matrix Multiply library
cymem2.0.6Manage calls to calloc/free through Cython
cython3.0.10The Cython compiler for writing C extensions for the Python language
cython-blis0.7.9Fast matrix-multiplication as a self-contained Python library – no system dependencies!
datasets2.16.1HuggingFace/Datasets is an open library of NLP datasets.
dav1d1.2.1The fastest AV1 decoder on all platforms
deep-learning-essentials3.3Expansive collection of deep learning packages
descartes1.1.0Use geometric objects as matplotlib paths and patches
detreg1.0.0PyTorch Wrapper for CUDA Functions of Multi-Scale Deformable Attention
dill0.3.7Serialize all of python (almost)
dm-tree0.1.7A library for working with nested data structures
dtreeviz1.3.7Decision tree visualization
einops0.7.0A new flavor of deep learning operations
ensemble-boxes1.0.8Methods for ensembling boxes from object detection models
expat2.6.0Expat XML parser library in C
fairlearn0.8.0Simple and easy fairness assessment and unfairness mitigation
fastai1.0.63fastai makes deep learning with PyTorch faster, more accurate, and easier
fastprogress0.2.3A fast and simple progress bar for Jupyter Notebook and console
fasttext0.9.2Efficient text classification and representation learning
ffmpeg6.1.1Cross-platform solution to record, convert and stream audio and video
filelock3.13.1A platform independent file lock
fiona1.9.5OGR's neat, nimble, no-nonsense API for Python programmers
fire0.4.0A library for creating CLIs from absolutely any Python object
folium0.14.0Make beautiful maps with Leaflet.js and Python
fontconfig2.14.1A library for configuring and customizing font access
fribidi1.0.10The Free Implementation of the Unicode Bidirectional Algorithm
frozenlist1.4.0A list-like structure which implements collections.abc.MutableSequence
gast0.5.3Python AST that abstracts the underlying Python version
gdown4.7.1Download large files from Google Drive.
geopandas0.14.1Geographic pandas extensions, base package
geopandas-base0.14.1Geographic pandas extensions, metapackage
geos3.12.1A C++ port of the Java Topology Suite (JTS)
getopt-win320.1A port of getopt for Visual C++
gflags2.2.2A C++ library that implements commandline flags processing
giflib5.2.1Library for reading and writing gif images
glib2.78.4Provides core application building blocks for libraries and applications written in C
glib-tools2.78.4Provides core application building blocks for libraries and applications written in C, command line tools
google-auth2.29.0Google authentication library for Python
google-auth-oauthlib0.5.2Google Authentication Library, oauthlib integration with google-auth
google-pasta0.2.0pasta is an AST-based Python refactoring library
gputil1.4.0NVIDIA GPU status from Python
graphite21.3.14A "smart font" system that handles the complexities of lesser-known languages of the world
graphviz8.1.0Open Source graph visualization software
groundingdino-py0.4.0open-set object detector
grpcio1.46.3HTTP/2-based RPC framework
gts0.7.6GNU Triangulated Surface Library
h3-py3.7.6H3 Hexagonal Hierarchical Geospatial Indexing System
harfbuzz4.3.0An OpenType text shaping engine
huggingface_hub0.20.3Client library to download and publish models on the huggingface.co hub
humanfriendly10.0Human friendly output for text interfaces using Python
icu68.1International Components for Unicode
imagecodecs2023.1.23Image transformation, compression, and decompression codecs
imageio2.33.1A Python library for reading and writing image data
imgaug0.4.0Image augmentation for machine learning experiments
inplace-abn1.1.0In-Place Activated BatchNorm
joblib1.4.0Python function as pipeline jobs
js2py0.74JavaScript to Python Translator & JavaScript interpreter written in 100% pure Python.
jxrlib1.1jxrlib - JPEG XR Library by Microsoft, built from Debian hosted sources.
keras2.13.1Deep Learning Library for Theano and TensorFlow
langcodes3.3.0Labels and compares human languages in a standardized way
lark1.1.2a modern parsing library
laspy1.7.1A Python library for reading, modifying and creating LAS files
lazy_loader0.3Easily load subpackages and functions on demand
lcms22.12The Little color management system
lerc3.0Limited Error Raster Compression
libaec1.0.4Adaptive entropy coding library
libavif0.11.1A friendly, portable C implementation of the AV1 Image File Format
libboost1.82.0Free peer-reviewed portable C++ source libraries
libclang14.0.6Development headers and libraries for the Clang compiler
libclang1314.0.6Development headers and libraries for the Clang compiler
libcurl8.6.0Tool and library for transferring data with URL syntax
libffi3.4.4Portable foreign-function interface library
libgd2.3.3Library for the dynamic creation of images
libglib2.78.4Provides core application building blocks for libraries and applications written in C
libiconv1.16Convert text between different encodings
libnghttp21.59.0HTTP/2 C library
libopencv4.8.1Computer vision and machine learning software library
libspatialindex1.9.3Extensible framework for robust spatial indexing
libsrt1.4.4Secure, Reliable Transport
libuv1.40.0Cross-platform asynchronous I/O
libwebp1.3.2WebP image library
libwebp-base1.3.2WebP image library, minimal base library
libxgboost2.0.3eXtreme Gradient Boosting
libzopfli1.0.3A compression library for very good but slow deflate or zlib compression
lightgbm4.3.0LightGBM is a gradient boosting framework that uses tree based learning algorithms
llvmlite0.42.0A lightweight LLVM python binding for writing JIT compilers
mako1.2.3Template library written in Python
mapclassify2.5.0Classification schemes for choropleth maps
markdown3.4.1Python implementation of Markdown
markdown-it-py2.2.0Python port of markdown-it. Markdown parsing, done right!
mdurl0.1.0URL utilities for markdown-it-py parser
mljar-supervised0.11.2Automated Machine Learning Pipeline with Feature Engineering and Hyper-Parameters Tuning
mmcv2.0.1OpenMMLab Computer Vision Foundation
mmdet3.1.0OpenMMLab Detection Toolbox and Benchmark
mmdet3d1.2.0Next generation platform for general 3D object detection
mmengine0.8.5Engine of OpenMMLab projects
mmsegmentation1.1.2semantic segmentation toolbox and benchmark
motmetrics1.1.3Benchmark multiple object trackers (MOT) in Python
multidict6.0.4Key-value pairs where keys are sorted and can reoccur
multiprocess0.70.15better multiprocessing and multithreading in python
munch2.5.0A dot-accessible dictionary (a la JavaScript objects)
murmurhash1.0.7A non-cryptographic hash function
nb_conda_kernels2.3.1Launch Jupyter kernels for any installed conda environment
neural-structured-learning1.4.0Train neural networks with structured signals
ninja_syntax1.7.2Python module for generating .ninja files
numba0.59.1NumPy aware dynamic Python compiler using LLVM
nuscenes-devkit1.1.3The devkit of the nuScenes dataset
nvidia-ml-py37.352.0Python bindings to the NVIDIA Management Library
onnx1.13.1Open Neural Network Exchange library
onnx-tf1.9.0Experimental Tensorflow Backend for ONNX
onnxruntime1.17.1cross-platform, high performance ML inferencing and training accelerator
opencv4.8.1Computer vision and machine learning software library
openjpeg2.5.0An open-source JPEG 2000 codec written in C
opt-einsum3.3.0Optimizing einsum functions in NumPy, Tensorflow, Dask, and more with contraction order optimization
optuna3.0.4A hyperparameter optimization framework
pango1.50.7Text layout and rendering engine
pathy0.10.3A Path interface for local and cloud bucket storage
pbr5.6.0Python Build Reasonableness
pccm0.4.11Python C++ code manager
pcre210.42Regular expression pattern matching using the same syntax and semantics as Perl 5
pixman0.42.2A low-level software library for pixel manipulation
plotly5.20.0An interactive, browser-based graphing library for Python
portalocker2.3.0Portalocker is a library to provide an easy API to file locking.
portaudio19.6.0A cross platform, open-source, audio I/O library
preshed3.0.6Cython Hash Table for Pre-Hashed Keys
prettytable2.1.0Display tabular data in a visually appealing ASCII table format
proj49.3.1PROJ coordinate transformation software library
py-boost1.82.0Free peer-reviewed portable C++ source libraries
py-opencv4.8.1Computer vision and machine learning software library
py-xgboost2.0.3Python bindings for the scalable, portable and distributed gradient boosting XGBoost library
pyasn10.4.8ASN.1 types and codecs
pyasn1-modules0.2.8A collection of ASN.1-based protocols modules
pycocotools2.0.7Python API for the MS-COCO dataset
pydantic2.4.2Data validation and settings management using python type hinting
pydantic-core2.10.1Data validation and settings management using python type hinting, core package
pyjsparser2.7.1Fast javascript parser (based on esprima.js)
pyperclip1.8.2A cross-platform clipboard module for Python
pyproj3.6.1Python interface to PROJ4 library for cartographic transformations
pyquaternion0.9.9Pythonic library for representing and using quaternions
pyreadline33.4.1A python implmementation of GNU readline, modernized
python-flatbuffers23.5.26Python runtime library for use with the Flatbuffers serialization format
python-graphviz0.20.1Simple Python interface for Graphviz
python-sounddevice0.4.4Play and record sound with Python
python-tzdata2023.3Provider of IANA time zone data
python-xxhash2.0.2Python binding for xxHash
pytorch2.0.1PyTorch is an optimized tensor library for deep learning using GPUs and CPUs
pywin32305Python extensions for Windows
rasterio1.3.9Rasterio reads and writes geospatial raster datasets
rich13.3.5Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal
rsa4.7.2Pure-Python RSA implementation
rtree1.0.1R-Tree spatial index for Python GIS
safetensors0.4.2Fast and Safe Tensor serialization
samgeo3.3A collection of the essential packages to work with the Segment Geospatial (samgeo) stack.
scikit-image0.22.0Image processing routines for SciPy
scikit-learn1.3.0A set of python modules for machine learning and data mining
scikit-plot0.3.7Plotting for scikit-learn objects
segment-anything1.0An unofficial Python package for Meta AI's Segment Anything Model
segment-anything-hq0.3Official Python package for Segment Anything in High Quality
segment-geospatial0.10.2A Python package for segmenting geospatial data with the Segment Anything Model (SAM)
sentencepiece0.1.99Unsupervised text tokenizer and detokenizer
shap0.42.1A unified approach to explain the output of any machine learning model
shapely2.0.1Geometric objects, predicates, and operations
shellingham1.5.0Tool to Detect Surrounding Shell
slicer0.0.7A small package for big slicing
smart_open5.2.1Python library for efficient streaming of large files
snuggs1.4.7Snuggs are s-expressions for NumPy
spacy3.7.2Industrial-strength Natural Language Processing
spacy-legacy3.0.12spaCy NLP legacy functions and architectures for backwards compatibility
spacy-loggers1.0.4Alternate loggers for spaCy pipeline training
spconv2.3.6Spatial sparse convolution
srsly2.4.8Modern high-performance serialization utilities for Python
stevedore5.1.0Manage dynamic plugins for Python applications
supervision0.6.0A set of easy-to-use utils that will come in handy in any Computer Vision project
tabulate0.9.0Pretty-print tabular data in Python, a library and a command-line utility
tbb2021.8.0High level abstract threading library
tenacity8.2.2Retry a flaky function whenever an exception occurs until it works
tensorboard2.13.0TensorBoard lets you watch Tensors Flow
tensorboard-data-server0.7.0Data server for TensorBoard
tensorboard-plugin-wit1.6.0What-If Tool TensorBoard plugin
tensorboardx2.6.2.2TensorBoardX lets you watch Tensors Flow without Tensorflow
tensorflow2.13.0TensorFlow is a machine learning library
tensorflow-addons0.22.0Useful extra functionality for TensorFlow
tensorflow-estimator2.13.0TensorFlow Estimator
tensorflow-hub0.16.1A library for transfer learning by reusing parts of TensorFlow models
tensorflow-io-gcs-filesystem0.31.0Dataset, streaming, and file system extensions
tensorflow-model-optimization0.7.5TensorFlow Model Optimization Toolkit
tensorflow-probability0.20.1TensorFlow Probability is a library for probabilistic reasoning and statistical analysis in TensorFlow
termcolor2.1.0ANSII Color formatting for output in terminal
terminaltables3.1.0Generate simple tables in terminals from a nested list of strings
tflite-model-maker0.3.4A model customization library for on-device applications
tflite-support0.4.4TensorFlow Lite Support for deploying TFLite models onto ombile devices
thinc8.2.2Learn super-sparse multi-class models
threadpoolctl2.2.0Python helpers to control the threadpools of native libraries
tifffile2023.4.12Read and write TIFF files
timm0.4.12PyTorch image models
tokenizers0.15.0Fast State-of-the-Art Tokenizers optimized for Research and Production
torch-cluster1.6.3Extension library of highly optimized graph cluster algorithms for use in PyTorch
torch-geometric2.4.0Geometric deep learning extension library for PyTorch
torch-scatter2.1.2Extension library of highly optimized sparse update (scatter and segment) operations
torch-sparse0.6.18Extension library of optimized sparse matrix operations with autograd support
torch-spline-conv1.2.2PyTorch implementation of the spline-based convolution operator of SplineCNN
torchvision0.15.2Image and video datasets and models for torch deep learning
torchvision-cpp0.15.2Image and video datasets and models for torch deep learning, C++ interface
transformers4.36.2State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch
trimesh2.35.39Import, export, process, analyze and view triangular meshes.
typeguard2.12.1Runtime type checker for Python
typer0.9.0A library for building CLI applications
typing3.10.0.0Type Hints for Python - backport for Python<3.5
tzlocal5.2tzinfo object for the local timezone
wasabi0.9.1A lightweight console printing and formatting toolkit
weasel0.3.4A small and easy workflow system
werkzeug3.0.3The Python WSGI Utility Library
wordcloud1.9.3A little word cloud generator in Python
wrapt1.14.1Module for decorators, wrappers and monkey patching
xgboost2.0.3Scalable, portable and distributed Gradient Boosting (GBDT, GBRT or GBM) library
xmltodict0.13.0Makes working with XML feel like you are working with JSON
xxhash0.8.0Extremely fast hash algorithm
xyzservices2022.9.0Source of XYZ tiles providers
yapf0.40.2A formatter for Python files
yarl1.9.3Yet another URL library
zfp1.0.0Library for compressed numerical arrays that support high throughput read and write random access
_py-xgboost-mutex2.0Metapackage for selecting the desired implementation of XGBoost
Manifest for Pro 3.2 / Server 11.2
Library NameVersionDescription
abseil-cpp20210324.2Abseil C++ Common Libraries
absl-py1.3.0Abseil Python Common Libraries
addict2.4.0Provides a dictionary whose items can be set using both attribute and item syntax
aiohttp3.8.3Async http client/server framework (asyncio)
aiosignal1.2.0A list of registered asynchronous callbacks
alembic1.6.4A database migration tool for SQLAlchemy
astor0.8.1Read, rewrite, and write Python ASTs nicely
astunparse1.6.3An AST unparser for Python
async-timeout4.0.2Timeout context manager for asyncio programs
blosc1.21.0A blocking, shuffling and loss-less compression library that can be faster than memcpy()
boost1.79.0Boost provides peer-reviewed portable C++ source libraries
bzip21.0.8High-quality data compressor
cairo1.14.12A 2D graphics library with support for multiple output devices
catalogue1.0.0Super lightweight function registries for your library
catboost0.26Gradient boosting on decision trees library
category_encoders2.2.2A collection sklearn transformers to encode categorical variables as numeric
cfitsio3.470A library for reading and writing FITS files
charls2.2.0CharLS, a C++ JPEG-LS library implementation
cliff3.8.0Command Line Interface Formulation Framework
cmaes0.8.2Blackbox optimization with the Covariance Matrix Adaptation Evolution Strategy
cmd22.4.2A tool for building interactive command line apps
colorlog5.0.1Log formatting with colors!
colour0.1.5Python color representations manipulation library (RGB, HSL, web, ...)
cudatoolkit11.1.1NVIDIA's CUDA toolkit
cudnn8.1.0.77NVIDIA's cuDNN deep neural network acceleration library
cymem2.0.6Manage calls to calloc/free through Cython
cython0.29.32The Cython compiler for writing C extensions for the Python language
cython-blis0.4.1Fast matrix-multiplication as a self-contained Python library – no system dependencies!
dataclasses0.8A backport of the dataclasses module for Python 3.6
deep-learning-essentials3.1Expansive collection of deep learning packages
descartes1.1.0Use geometric objects as matplotlib paths and patches
dm-tree0.1.7A library for working with nested data structures
dtreeviz1.3.7Decision tree visualization
dtreeviz-extended1.3.7Decision tree visualization with included optional dependencies
einops0.3.2A new flavor of deep learning operations
ensemble-boxes1.0.8Methods for ensembling boxes from object detection models
fastai1.0.63fastai makes deep learning with PyTorch faster, more accurate, and easier
fastprogress0.2.3A fast and simple progress bar for Jupyter Notebook and console
fasttext0.9.2Efficient text classification and representation learning
filelock3.9.0A platform independent file lock
fire0.4.0A library for creating CLIs from absolutely any Python object
flatbuffers2.0.0Memory Efficient Serialization Library
frozenlist1.3.3A list-like structure which implements collections.abc.MutableSequence
gast0.4.0Python AST that abstracts the underlying Python version
geos3.5.0A C++ port of the Java Topology Suite (JTS)
giflib5.2.1Library for reading and writing gif images
google-auth2.6.0Google authentication library for Python
google-auth-oauthlib0.4.1Google Authentication Library, oauthlib integration with google-auth
google-pasta0.2.0pasta is an AST-based Python refactoring library
googledrivedownloader0.4Minimal class to download shared files from Google Drive
graphviz2.38Open Source graph visualization software
grpcio1.42.0HTTP/2-based RPC framework
h3-py3.7.3H3 Hexagonal Hierarchical Geospatial Indexing System
html5lib1.1HTML parser based on the WHATWG HTML specification
icu68.1International Components for Unicode
imagecodecs2021.8.26Image transformation, compression, and decompression codecs
imageio2.19.3A Python library for reading and writing image data
inplace-abn1.1.0In-Place Activated BatchNorm
joblib1.1.1Python function as pipeline jobs
keepalive0.5urllib keepalive support for Python
keras2.7.0Deep Learning Library for Theano and TensorFlow
keras-base2.7.0The Keras base package contains the shared Keras components used across multiple different Keras builds
keras-gpu2.7.0Deep Learning Library for Theano and TensorFlow
keras-preprocessing1.1.2Data preprocessing and data augmentation module of the Keras deep learning library
laspy1.7.0A Python library for reading, modifying and creating LAS files
lcms22.12The Little color management system
libaec1.0.4Adaptive entropy coding library
libboost1.79.0Free peer-reviewed portable C++ source libraries
libcurl7.86.0Tool and library for transferring data with URL syntax
libnghttp21.50.0HTTP/2 C library
libopencv4.5.2Computer vision and machine learning software library
libuv1.40.0Cross-platform asynchronous I/O
libwebp1.2.4WebP image library
libwebp-base1.2.4WebP image library, minimal base library
libxgboost1.5.0eXtreme Gradient Boosting
libzopfli1.0.3A compression library for very good but slow deflate or zlib compression
lightgbm3.2.1LightGBM is a gradient boosting framework that uses tree based learning algorithms
llvmlite0.39.1A lightweight LLVM python binding for writing JIT compilers
mako1.2.3Template library written in Python
markdown3.4.1Python implementation of Markdown
mljar-supervised0.11.2Automated Machine Learning Pipeline with Feature Engineering and Hyper-Parameters Tuning
mmcv-full1.4.0OpenMMLab Computer Vision Foundation
mmdet2.19.0OpenMMLab Detection Toolbox and Benchmark
mmdet3d0.17.3Next generation platform for general 3D object detection
mmsegmentation0.19.0semantic segmentation toolbox and benchmark
motmetrics1.1.3Benchmark multiple object trackers (MOT) in Python
multi-scale-deformable-attention1.0.0PyTorch Wrapper for CUDA Functions of Multi-Scale Deformable Attention
multidict6.0.2Key-value pairs where keys are sorted and can reoccur
murmurhash1.0.7A non-cryptographic hash function
nb_conda_kernels2.3.1Launch Jupyter kernels for any installed conda environment
neural-structured-learning1.4.0Train neural networks with structured signals
ninja1.10.2A small build system with a focus on speed
ninja-base1.10.2A small build system with a focus on speed, minimum dependencies
numba0.56.4NumPy aware dynamic Python compiler using LLVM
nuscenes-devkit1.1.3The devkit of the nuScenes dataset
nvidia-ml-py37.352.0Python bindings to the NVIDIA Management Library
onnx1.9.0Open Neural Network Exchange library
onnx-tf1.8.0Experimental Tensorflow Backend for ONNX
opencv4.5.2Computer vision and machine learning software library
openjpeg2.4.0An open-source JPEG 2000 codec written in C
optuna3.0.4A hyperparameter optimization framework
opt_einsum3.3.0Optimizing einsum functions in NumPy, Tensorflow, Dask, and more with contraction order optimization
patsy0.5.2Describing statistical models in Python using symbolic formulas
pbr5.6.0Python Build Reasonableness
pixman0.40.0A low-level software library for pixel manipulation
plac1.1.0The smartest command line arguments parser in the world
plotly4.5.4An interactive, browser-based graphing library for Python
portaudio19.6.0A cross platform, open-source, audio I/O library
preshed3.0.6Cython Hash Table for Pre-Hashed Keys
prettytable2.1.0Display tabular data in a visually appealing ASCII table format
py-boost1.79.0Free peer-reviewed portable C++ source libraries
py-opencv4.5.2Computer vision and machine learning software library
py-xgboost1.5.0Python bindings for the scalable, portable and distributed gradient boosting XGBoost library
py4j0.10.9.3Enables Python programs to dynamically access arbitrary Java objects
pyasn10.4.8ASN.1 types and codecs
pyasn1-modules0.2.8A collection of ASN.1-based protocols modules
pycocotools2.0.2Python API for the MS-COCO dataset
pyperclip1.8.2A cross-platform clipboard module for Python
pyquaternion0.9.9Pythonic library for representing and using quaternions
pyspark3.2.1Apache Spark
python-editor1.0.4Programmatically open an editor, capture the result
python-flatbuffers1.12Python runtime library for use with the Flatbuffers serialization format
python-graphviz0.16Simple Python interface for Graphviz
python-sounddevice0.4.4Play and record sound with Python
pytorch1.8.2PyTorch is an optimized tensor library for deep learning using GPUs and CPUs
pywavelets1.4.1Discrete Wavelet Transforms in Python
rdflib5.0.0RDFLib is a pure Python package for working with RDF
retrying1.3.3Simplify the task of adding retry behavior to just about anything
rsa4.7.2Pure-Python RSA implementation
sacremoses0.0.43Python based tokenizer and normalizer
scikit-image0.17.2Image processing routines for SciPy
scikit-learn1.0.2A set of python modules for machine learning and data mining
scikit-plot0.3.7Plotting for scikit-learn objects
sentencepiece0.1.95Unsupervised text tokenizer and detokenizer
shap0.39.0A unified approach to explain the output of any machine learning model
shapely1.7.1Geometric objects, predicates, and operations
slicer0.0.7A small package for big slicing
snappy1.1.9A fast compressor/decompressor
spacy2.2.4Industrial-strength Natural Language Processing
sparqlwrapper1.8.5SPARQL Endpoint interface to Python for use with rdflib
srsly1.0.5Modern high-performance serialization utilities for Python
statsmodels0.12.2Statistical computations and models
stevedore3.3.0Manage dynamic plugins for Python applications
tabulate0.8.10Pretty-print tabular data in Python, a library and a command-line utility
tbb2021.6.0High level abstract threading library
tensorboard2.6.0TensorBoard lets you watch Tensors Flow
tensorboard-data-server0.6.1Data server for TensorBoard
tensorboard-plugin-wit1.8.1What-If Tool TensorBoard plugin
tensorboardx2.2TensorBoardX lets you watch Tensors Flow without Tensorflow
tensorflow-addons0.15.0Useful extra functionality for TensorFlow
tensorflow-base2.7.0TensorFlow is a machine learning library, base package contains only tensorflow
tensorflow-estimator2.7.0TensorFlow Estimator
tensorflow-gpu2.7.0Metapackage for selecting the GPU-backed TensorFlow variant
tensorflow-hub0.12.0A library for transfer learning by reusing parts of TensorFlow models
tensorflow-model-optimization0.7.3TensorFlow Model Optimization Toolkit
termcolor2.1.0ANSII Color formatting for output in terminal
terminaltables3.1.0Generate simple tables in terminals from a nested list of strings
tflite-model-maker0.3.4A model customization library for on-device applications
tflite-support0.4.1TensorFlow Lite Support for deploying TFLite models onto ombile devices
thinc7.4.0Learn super-sparse multi-class models
threadpoolctl2.2.0Python helpers to control the threadpools of native libraries
tifffile2021.7.2Read and write TIFF files
timm0.4.12PyTorch image models
tokenizers0.10.1Fast State-of-the-Art Tokenizers optimized for Research and Production
torch-cluster1.5.9Extension library of highly optimized graph cluster algorithms for use in PyTorch
torch-geometric1.7.2Geometric deep learning extension library for PyTorch
torch-scatter2.0.7Extension library of highly optimized sparse update (scatter and segment) operations
torch-sparse0.6.10Extension library of optimized sparse matrix operations with autograd support
torch-spline-conv1.2.1PyTorch implementation of the spline-based convolution operator of SplineCNN
torchvision0.9.2Image and video datasets and models for torch deep learning
torchvision-cpp0.9.2Image and video datasets and models for torch deep learning, C++ interface
transformers4.5.1State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch
trimesh2.35.39Import, export, process, analyze and view triangular meshes.
typeguard2.12.1Runtime type checker for Python
typing3.10.0.0Type Hints for Python - backport for Python<3.5
wasabi0.9.1A lightweight console printing and formatting toolkit
werkzeug2.2.2The Python WSGI Utility Library
wordcloud1.8.1A little word cloud generator in Python
xgboost1.5.0Scalable, portable and distributed Gradient Boosting (GBDT, GBRT or GBM) library
xmltodict0.12.0Makes working with XML feel like you are working with JSON
yapf0.31.0A formatter for Python files
yarl1.8.1Yet another URL library
zfp0.5.5Library for compressed numerical arrays that support high throughput read and write random access
_py-xgboost-mutex2.0Metapackage for selecting the desired implementation of XGBoost
_tflow_select2.7.0Metapackage for selecting the desired implementation of TensorFlow
Manifest for Pro 3.0 / Server 11
Library NameVersionDescription
absl-py0.13.0Abseil Python Common Libraries
addict2.4.0Provides a dictionary whose items can be set using both attribute and item syntax
aiohttp3.7.4.post0Async http client/server framework (asyncio)
alembic1.6.4A database migration tool for SQLAlchemy
astor0.8.1Read, rewrite, and write Python ASTs nicely
astunparse1.6.3An AST unparser for Python
async-timeout3.0.1Timeout context manager for asyncio programs
beautifulsoup44.10.0Python library designed for screen-scraping
boost1.73.0Boost provides peer-reviewed portable C++ source libraries
bottleneck1.3.2Fast NumPy array functions written in Cython
catalogue1.0.0Super lightweight function registries for your library
catboost0.26Gradient boosting on decision trees library
category_encoders2.2.2A collection sklearn transformers to encode categorical variables as numeric
charset-normalizer2.0.4A fast and robust universal character set detector
cliff3.8.0Command Line Interface Formulation Framework
cloudpickle2.0.0Extended pickling support for Python objects
cmaes0.8.2Blackbox optimization with the Covariance Matrix Adaptation Evolution Strategy
cmd22.1.1A tool for building interactive command line apps
colorlog5.0.1Log formatting with colors!
colour0.1.5Python color representations manipulation library (RGB, HSL, web, ...)
coverage5.5Code coverage measurement for Python
cudatoolkit11.1.1NVIDIA's CUDA toolkit
cudnn8.1.0.77NVIDIA's cuDNN deep neural network acceleration library
cymem2.0.5Manage calls to calloc/free through Cython
cython0.29.24The Cython compiler for writing C extensions for the Python language
cython-blis0.4.1Fast matrix-multiplication as a self-contained Python library – no system dependencies!
cytoolz0.11.0Cython implementation of Toolz. High performance functional utilities
dask-core2021.10.0Parallel Python with task scheduling
dataclasses0.8A backport of the dataclasses module for Python 3.6
deep-learning-essentials2.9Expansive collection of deep learning packages
dtreeviz1.3Decision tree visualization
fastai1.0.63fastai makes deep learning with PyTorch faster, more accurate, and easier
fastprogress0.2.3A fast and simple progress bar for Jupyter Notebook and console
fasttext0.9.2Efficient text classification and representation learning
filelock3.3.1A platform independent file lock
fsspec2021.8.1A specification for pythonic filesystems
gast0.3.3Python AST that abstracts the underlying Python version
geos3.5.0A C++ port of the Java Topology Suite (JTS)
google-auth1.33.0Google authentication library for Python
google-auth-oauthlib0.4.1Google Authentication Library, oauthlib integration with google-auth
google-pasta0.2.0pasta is an AST-based Python refactoring library
googledrivedownloader0.4Minimal class to download shared files from Google Drive
graphviz2.38Open Source graph visualization software
grpcio1.36.1HTTP/2-based RPC framework
imageio2.8.0A Python library for reading and writing image data
imgaug0.4.0Image augmentation for machine learning experiments
joblib1.1.0Python function as pipeline jobs
keepalive0.5urllib keepalive support for Python
keras-gpu2.4.3Deep Learning Library for Theano and TensorFlow
keras-preprocessing1.1.2Data preprocessing and data augmentation module of the Keras deep learning library
laspy1.7.0A Python library for reading, modifying and creating LAS files
libboost1.73.0Free peer-reviewed portable C++ source libraries
libopencv4.5.2Computer vision and machine learning software library
libuv1.40.0Cross-platform asynchronous I/O
libwebp1.2.0WebP image library
libxgboost1.3.3eXtreme Gradient Boosting
lightgbm3.2.1LightGBM is a gradient boosting framework that uses tree based learning algorithms
llvmlite0.37.0A lightweight LLVM python binding for writing JIT compilers
lmdb0.9.29Universal Python binding for the LMDB 'Lightning' Database
locket0.2.1File-based locks for Python for Linux and Windows
mako1.1.4Template library written in Python
markdown3.3.4Python implementation of Markdown
mljar-supervised0.10.6Automated Machine Learning Pipeline with Feature Engineering and Hyper-Parameters Tuning
mmcv-full1.3.7OpenMMLab Computer Vision Foundation
mmdet2.13.0OpenMMLab Computer Vision Foundation
mmsegmentation0.14.1semantic segmentation toolbox and benchmark
multidict5.1.0Key-value pairs where keys are sorted and can reoccur
murmurhash1.0.5A non-cryptographic hash function
nb_conda_kernels2.3.1Launch Jupyter kernels for any installed conda environment
ninja1.10.2A small build system with a focus on speed
numba0.54.1NumPy aware dynamic Python compiler using LLVM
nvidia-ml-py37.352.0Python bindings to the NVIDIA Management Library
onnx1.9.0Open Neural Network Exchange library
onnx-tf1.8.0Experimental Tensorflow Backend for ONNX
opencv4.5.2Computer vision and machine learning software library
optuna2.8.0A hyperparameter optimization framework
opt_einsum3.3.0Optimizing einsum functions in NumPy, Tensorflow, Dask, and more with contraction order optimization
partd1.2.0Data structure for on-disk shuffle operations
patsy0.5.2Describing statistical models in Python using symbolic formulas
pbr5.6.0Python Build Reasonableness
plac1.1.0The smartest command line arguments parser in the world
plotly4.5.4An interactive, browser-based graphing library for Python
pooch1.0.0A friend to fetch your Python library's sample data files
preshed3.0.2Cython Hash Table for Pre-Hashed Keys
prettytable2.1.0Display tabular data in a visually appealing ASCII table format
py-boost1.73.0Free peer-reviewed portable C++ source libraries
py-opencv4.5.2Computer vision and machine learning software library
py-xgboost1.3.3Python bindings for the scalable, portable and distributed gradient boosting XGBoost library
py4j0.10.9.2Enables Python programs to dynamically access arbitrary Java objects
pyasn10.4.8ASN.1 types and codecs
pyasn1-modules0.2.8A collection of ASN.1-based protocols modules
pyclipper1.3.0Cython wrapper of Angus Johnson's Clipper library for polygon clipping
pycocotools2.0.2Python API for the MS-COCO dataset
pyperclip1.8.2A cross-platform clipboard module for Python
pyreadline2.1A python implmementation of GNU readline
pyspark3.1.2Apache Spark
python-editor1.0.4Programmatically open an editor, capture the result
python-flatbuffers2.0Python runtime library for use with the Flatbuffers serialization format
python-graphviz0.16Simple Python interface for Graphviz
python-levenshtein0.12.2Python extension for computing string edit distances and similarities
python-lmdb1.2.1Universal Python binding for the LMDB 'Lightning' Database
python_abi3.7Metapackage to select Python implementation
pytorch1.8.2PyTorch is an optimized tensor library for deep learning using GPUs and CPUs
pywavelets1.1.1Discrete Wavelet Transforms in Python
rdflib5.0.0RDFLib is a pure Python package for working with RDF
retrying1.3.3Simplify the task of adding retry behavior to just about anything
rsa4.7.2Pure-Python RSA implementation
sacremoses0.0.43SacreMoses
scikit-image0.17.2Image processing routines for SciPy
scikit-learn1.0.1A set of python modules for machine learning and data mining
scikit-plot0.3.7Plotting for scikit-learn objects
seaborn0.11.2Statistical data visualization
sentencepiece0.1.91Unsupervised text tokenizer and detokenizer
shap0.39.0A unified approach to explain the output of any machine learning model
shapely1.7.0Geometric objects, predicates, and operations
slicer0.0.7A small package for big slicing
soupsieve2.2.1A modern CSS selector implementation for BeautifulSoup
spacy2.2.4Industrial-strength Natural Language Processing
sparqlwrapper1.8.5SPARQL Endpoint interface to Python for use with rdflib
srsly1.0.2Modern high-performance serialization utilities for Python
statsmodels0.12.2Statistical computations and models
stevedore3.3.0Manage dynamic plugins for Python applications
tabulate0.8.9Pretty-print tabular data in Python, a library and a command-line utility
tbb2021.4.0High level abstract threading library
tensorboard2.6.0TensorBoard lets you watch Tensors Flow
tensorboard-data-server0.6.0Data server for TensorBoard
tensorboard-plugin-wit1.6.0What-If Tool TensorBoard plugin
tensorboardx2.2TensorBoardX lets you watch Tensors Flow without Tensorflow
tensorflow-addons0.13.0Useful extra functionality for TensorFlow
tensorflow-estimator2.5.0TensorFlow Estimator
tensorflow-gpu2.5.1Metapackage for selecting the GPU-backed TensorFlow variant
termcolor1.1.0ANSII Color formatting for output in terminal
terminaltables3.1.0Generate simple tables in terminals from a nested list of strings
thinc7.4.0Learn super-sparse multi-class models
threadpoolctl2.2.0Python helpers to control the threadpools of native libraries
tifffile2020.10.1Read and write TIFF files
tokenizers0.10.1Fast State-of-the-Art Tokenizers optimized for Research and Production
toolz0.11.1A functional standard library for Python
torch-cluster1.5.9Extension library of highly optimized graph cluster algorithms for use in PyTorch
torch-geometric1.7.2Geometric deep learning extension library for PyTorch
torch-scatter2.0.7Extension library of highly optimized sparse update (scatter and segment) operations
torch-sparse0.6.10Extension library of optimized sparse matrix operations with autograd support
torch-spline-conv1.2.1PyTorch implementation of the spline-based convolution operator of SplineCNN
torchvision0.9.2Image and video datasets and models for torch deep learning
tqdm4.62.3A Fast, Extensible Progress Meter
transformers4.5.1State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch
typeguard2.12.1Runtime type checker for Python
typing-extensions3.10.0.2Backported and Experimental Type Hints for Python
wasabi0.6.0A lightweight console printing and formatting toolkit
werkzeug2.0.2The Python WSGI Utility Library
wordcloud1.8.1A little word cloud generator in Python
xgboost1.3.3Scalable, portable and distributed Gradient Boosting (GBDT, GBRT or GBM) library
yapf0.31.0A formatter for Python files
yarl1.6.3Yet another URL library
Manifest for Pro 2.8 / Server 10.9.0
Library NameVersionDescription
absl-py0.12.0Abseil Python Common Libraries, see https://github.com/abseil/abseil-py.
ase3.19.1Set of tools for atomistic simulations
astor0.8.1Read, rewrite, and write Python ASTs nicely
beautifulsoup44.9.3Python library designed for screen-scraping
boost1.73.0Free peer-reviewed portable C++ source libraries.
cachetools4.2.2Extensible memoizing collections and decorators
catalogue1.0.0Super lightweight function registries for your library
cloudpickle1.6.0Extended pickling support for Python objects
cudatoolkit10.1.243NVIDIA CUDA toolkit
cudnn7.6.5NVIDIA's cuDNN deep neural network acceleration library
cymem2.0.5Manage calls to calloc/free through Cython
cython0.29.23The Cython compiler for writing C extensions for the Python language
cython-blis0.4.1Fast matrix-multiplication as a self-contained Python library – no system dependencies!
cytoolz0.11.0Cython implementation of Toolz. High performance functional utilities
dask-core2021.5.0Parallel Python with task scheduling
deep-learning-essentials2.8A collection of the essential packages to work with deep learning packages and ArcGIS Pro.
fastai1.0.60fastai makes deep learning with PyTorch faster, more accurate, and easier
fastprogress0.2.3A fast and simple progress bar for Jupyter Notebook and console.
fasttext0.9.2fastText - Library for efficient text classification and representation learning
filelock3.0.12A platform independent file lock.
fsspec0.9.0A specification for pythonic filesystems
gast0.2.2Python AST that abstracts the underlying Python version
google-auth1.21.3Google authentication library for Python
google-auth-oauthlib0.4.2Google Authentication Library, oauthlib integration with google-auth
google-pasta0.2.0pasta is an AST-based Python refactoring library
googledrivedownloader0.4Minimal class to download shared files from Google Drive.
graphviz2.38Open Source graph visualization software.
grpcio1.35.0HTTP/2-based RPC framework
imageio2.8.0A Python library for reading and writing image data
joblib1.0.1Lightweight pipelining: using Python functions as pipeline jobs.
keepalive0.5An HTTP handler for urllib that supports HTTP 1.1 and keepalive
keras-applications1.0.8Applications module of the Keras deep learning library.
keras-gpu2.3.1Deep Learning Library for Theano and TensorFlow
keras-preprocessing1.1.2Data preprocessing and data augmentation module of the Keras deep learning library
laspy1.7.0A Python library for reading, modifying and creating LAS files
libboost1.73.0Free peer-reviewed portable C++ source libraries
libopencv4.5.0Computer vision and machine learning software library.
libprotobuf3.14.0Protocol Buffers - Google's data interchange format. C++ Libraries and protoc, the protobuf compiler.
libwebp1.2.0WebP image library
llvmlite0.36.0A lightweight LLVM python binding for writing JIT compilers.
locket0.2.1File-based locks for Python for Linux and Windows
markdown3.3.4Python implementation of Markdown.
murmurhash1.0.5Cython bindings for MurmurHash2
ninja1.10.2A small build system with a focus on speed
numba0.53.0NumPy aware dynamic Python compiler using LLVM
nvidia-ml-py37.352.0Python bindings to the NVIDIA Management Library
onnx1.7.0Open Neural Network Exchange library
onnx-tf1.5.0Experimental Tensorflow Backend for ONNX
opencv4.5.0Computer vision and machine learning software library.
opt_einsum3.3.0Optimizing einsum functions in NumPy, Tensorflow, Dask, and more with contraction order optimization.
partd1.2.0Data structure for on-disk shuffle operations
plac1.1.0The smartest command line arguments parser in the world
plotly4.5.4An interactive JavaScript-based visualization library for Python
pooch1.0.0A friend to fetch your Python library's sample data files
preshed3.0.2Cython Hash Table for Pre-Hashed Keys
protobuf3.14.0Protocol Buffers - Google's data interchange format.
py-boost1.73.0Free peer-reviewed portable C++ source libraries.
py-opencv4.5.0Computer vision and machine learning software library.
pyasn10.4.8ASN.1 types and codecs
pyasn1-modules0.2.8A collection of ASN.1-based protocols modules.
pytorch1.4.0PyTorch is an optimized tensor library for deep learning using GPUs and CPUs.
pywavelets1.1.1Discrete Wavelet Transforms in Python
rdflib5.0.0Library for working with RDF, a simple yet powerful language for representing information.
retrying1.3.3Simplify the task of adding retry behavior to just about anything.
rsa4.7.2Pure-Python RSA implementation
sacremoses0.0.43Python port of Moses tokenizer, truecaser and normalizer.
scikit-image0.17.2Image processing routines for SciPy
scikit-learn0.23.2A set of python modules for machine learning and data mining
sentencepiece0.1.91SentencePiece python wrapper
soupsieve2.2.1A modern CSS selector implementation for BeautifulSoup
spacy2.2.4Industrial-strength Natural Language Processing
sparqlwrapper1.8.5SPARQL Endpoint interface to Python for use with rdflib
srsly1.0.2Modern high-performance serialization utilities for Python
tensorboard2.4.0TensorBoard lets you watch Tensors Flow
tensorboard-plugin-wit1.6.0What-If Tool TensorBoard plugin
tensorboardx2.1Tensorboard for PyTorch.
tensorflow2.1.0TensorFlow is a machine learning library.
tensorflow-addons0.9.1Useful extra functionality for TensorFlow 2.x
tensorflow-base2.1.0Base GPU package, tensorflow only.
tensorflow-estimator2.1.0TensorFlow Estimator
tensorflow-gpu2.1.0Metapackage for selecting a TensorFlow variant.
termcolor1.1.0ANSII Color formatting for output in terminal.
thinc7.4.0Learn super-sparse multi-class models
threadpoolctl2.1.0Python helpers to control the threadpools of native libraries
tifffile2020.10.1Read and write image data from and to TIFF files.
tokenizers0.8.1Fast State-of-the-Art Tokenizers optimized for Research and Production
toolz0.11.1A functional standard library for Python
torch-cluster1.5.4Extension library of highly optimized graph cluster algorithms for use in PyTorch
torch-geometric-1.5.0Geometric deep learning extension library for PyTorch
torch-scatter2.0.4Extension library of highly optimized sparse update (scatter and segment) operations
torch-sparse0.6.1Extension library of optimized sparse matrix operations with autograd support
torch-spline-conv1.2.0PyTorch implementation of the spline-based convolution operator of SplineCNN
torchvision0.5.0image and video datasets and models for torch deep learning
tqdm4.59.0A Fast, Extensible Progress Meter
transformers3.3.0State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch
typeguard2.7.0Runtime type checker for Python
wasabi0.6.0A lightweight console printing and formatting toolkit
werkzeug0.16.1The comprehensive WSGI web application library.

TensorFlow Support

Important

As of Pro 3.6, TensorFlow and its related packages have been removed from this distribution.

Over time, TensorFlow has reduced its support for the platforms ArcGIS is used on. Native CUDA support for Windows was removed in 2022 at the TensorFlow 2.11 release, and in 2025 it took eleven months for a Python 3.13 compatible version to be released.

As a result, we recommend migrating any TensorFlow dependent code to PyTorch to remain in sync with the shifting deep learning landscape.

If you remain on older versions of the software, the Pro 3.3-3.5 package set includes a CPU-only build of TensorFlow 2.13. TensorFlow 2.10 was the last TensorFlow release that includes native Windows GPU support. If you have performance dependent code in TensorFlow not easily migrated, Pro 3.2 and earlier have GPU accelerated versions of TensorFlow.

The removal of TensorFlow also removed these related packages:

  • keras
  • onnx-tf
  • neural-structured-learning
  • tensorflow-addons
  • tensorflow-estimator
  • tensorflow-hub
  • tensorflow-model-optimization
  • tensorflow-probability
  • tflite-model-maker

Additional Notes

  • Though this package distributes the GPU based versions of packages, CPU versions can still be installed and used on any machine Pro supports. To install TensorFlow for the CPU, from the Python backstage you can install the tensorflow-mkl package to get a CPU only version.
  • This installer adds packages to the default arcgispro-py3 environment. Any subsequent clones of that environment will also include this full collection of packages. This collection of packages is validated and tested against the version of Pro is installed alongside, and upgrades of Pro will also require reinstallation of the deep learning libraries. Note that when you upgrade the software to a new release, you'll need to uninstall the Deep Learning Libraries installation as well as Pro or Server, and reinstall the new version of this package for that release.
  • This installer is only available for ArcGIS Pro 2.6+, and ArcGIS Server 10.8.1+ -- for earlier releases, you'll need to follow the documentation for that release on installing the packages through the Python backstage or Python command prompt.
  • If you want these packages for a specific environment only, you can install the deep-learning-essentials package which has the same list of dependencies as a standalone conda metapackage.

Known Issues

Pro 3.1 and earlier

The Pro 3.1 and earlier package set includes a TensorFlow build which has long paths. When creating cloned environments, these paths can easily exceed the Windows MAX_PATH limitation, which prevents paths longer than 260 characters being created. To work around this limitation, the following setting can be changed in the registry:

allow-long-file-paths-ntfs