Is conda case sensitive?

Viewed 63

This question is related to Is PyPI case sensitive?

Given that pip is case insensitive, is conda also case insensitive for package names?

2 Answers

Conda doesn't even allow uppercase in package names in the first place.

Conda package names are normalized and they may contain only lowercase alpha characters, numeric digits, underscores, hyphens, or dots.

from the conda-build docs

Yes. In my Knowledge conda is case sensitive just like pip.

Related