File size: 49,298 Bytes
71687cf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 | # Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
"""Conda exceptions."""
from __future__ import annotations
import os
import sys
from collections import defaultdict
from datetime import timedelta
from logging import getLogger
from os.path import join
from textwrap import dedent, indent
from traceback import format_exception, format_exception_only
from typing import TYPE_CHECKING
from . import CondaError, CondaExitZero, CondaMultiError
from .auxlib.ish import dals
from .auxlib.logz import stringify
from .base.constants import (
COMPATIBLE_SHELLS,
PREFIX_PINNED_FILE,
PathConflict,
SafetyChecks,
)
from .common.compat import on_win
from .common.io import dashlist
from .common.iterators import groupby_to_dict as groupby
from .common.serialize.json import JSONDecodeError
from .common.serialize.json import dumps as json_dumps
from .common.signals import get_signal_name
from .common.url import join_url, maybe_unquote
from .deprecations import DeprecatedError # noqa: F401
from .exception_handler import ExceptionHandler, conda_exception_handler # noqa: F401
from .models.channel import Channel
if TYPE_CHECKING:
from collections.abc import Iterable
from types import TracebackType
from typing import Any
import requests
from conda.base.context import Context
from conda.common.path import PathType
from conda.models.match_spec import MatchSpec
from conda.models.records import PackageRecord
from conda.plugins.types import CondaEnvironmentExporter
log = getLogger(__name__)
# TODO: for conda-build compatibility only
# remove in conda 4.4
class ResolvePackageNotFound(CondaError):
def __init__(self, bad_deps: Iterable[Iterable[MatchSpec]]):
# bad_deps is a list of lists
# bad_deps should really be named 'invalid_chains'
self.bad_deps = tuple(dep for deps in bad_deps for dep in deps if dep)
formatted_chains = tuple(
" -> ".join(map(str, bad_chain)) for bad_chain in bad_deps
)
self._formatted_chains = formatted_chains
message = "\n" + "\n".join(
(f" - {bad_chain}") for bad_chain in formatted_chains
)
super().__init__(message)
NoPackagesFound = NoPackagesFoundError = ResolvePackageNotFound
class LockError(CondaError, OSError):
def __init__(self, message: str):
msg = str(message)
super().__init__(msg)
class ArgumentError(CondaError):
return_code = 2
def __init__(self, message: str, **kwargs):
super().__init__(message, **kwargs)
class Help(CondaError):
pass
class ActivateHelp(Help):
def __init__(self):
message = dals(
"""
usage: conda activate [-h] [--[no-]stack] [env_name_or_prefix]
Activate a conda environment.
Options:
positional arguments:
env_name_or_prefix The environment name or prefix to activate. If the
prefix is a relative path, it must start with './'
(or '.\\' on Windows).
optional arguments:
-h, --help Show this help message and exit.
--stack Stack the environment being activated on top of the
previous active environment, rather replacing the
current active environment with a new one. Currently,
only the PATH environment variable is stacked. This
may be enabled implicitly by the 'auto_stack'
configuration variable.
--no-stack Do not stack the environment. Overrides 'auto_stack'
setting.
"""
)
super().__init__(message)
class DeactivateHelp(Help):
def __init__(self):
message = dals(
"""
usage: conda deactivate [-h]
Deactivate the current active conda environment.
Options:
optional arguments:
-h, --help Show this help message and exit.
"""
)
super().__init__(message)
class GenericHelp(Help):
def __init__(self, command: str):
message = f"help requested for {command}"
super().__init__(message)
class CondaSignalInterrupt(CondaError):
def __init__(self, signum: int):
signal_name = get_signal_name(signum)
super().__init__(
"Signal interrupt %(signal_name)s", signal_name=signal_name, signum=signum
)
class TooManyArgumentsError(ArgumentError):
def __init__(
self,
expected: int,
received: int,
offending_arguments: Iterable[str],
optional_message: str = "",
*args,
):
self.expected = expected
self.received = received
self.offending_arguments = offending_arguments
self.optional_message = optional_message
suffix = "s" if received - expected > 1 else ""
msg = "{} Got {} argument{} ({}) but expected {}.".format(
optional_message,
received,
suffix,
", ".join(offending_arguments),
expected,
)
super().__init__(msg, *args)
class ClobberError(CondaError):
def __init__(self, message: str, path_conflict: PathConflict, **kwargs):
self.path_conflict = path_conflict
super().__init__(message, **kwargs)
def __repr__(self):
clz_name = (
"ClobberWarning"
if self.path_conflict == PathConflict.warn
else "ClobberError"
)
return f"{clz_name}: {self}\n"
class BasicClobberError(ClobberError):
def __init__(self, source_path: PathType, target_path: PathType, context: Context):
message = dals(
"""
Conda was asked to clobber an existing path.
source path: %(source_path)s
target path: %(target_path)s
"""
)
if context.path_conflict == PathConflict.prevent:
message += (
"Conda no longer clobbers existing paths without the use of the "
"--clobber option\n."
)
super().__init__(
message,
context.path_conflict,
target_path=target_path,
source_path=source_path,
)
class KnownPackageClobberError(ClobberError):
def __init__(
self,
target_path: PathType,
colliding_dist_being_linked: PackageRecord | str,
colliding_linked_dist: PackageRecord | str,
context: Context,
):
message = dals(
"""
The package '%(colliding_dist_being_linked)s' cannot be installed due to a
path collision for '%(target_path)s'.
This path already exists in the target prefix, and it won't be removed by
an uninstall action in this transaction. The path appears to be coming from
the package '%(colliding_linked_dist)s', which is already installed in the prefix.
"""
)
if context.path_conflict == PathConflict.prevent:
message += (
"If you'd like to proceed anyway, re-run the command with "
"the `--clobber` flag.\n."
)
super().__init__(
message,
context.path_conflict,
target_path=target_path,
colliding_dist_being_linked=colliding_dist_being_linked,
colliding_linked_dist=colliding_linked_dist,
)
class UnknownPackageClobberError(ClobberError):
def __init__(
self,
target_path: PathType,
colliding_dist_being_linked: PackageRecord | str,
context: Context,
):
message = dals(
"""
The package '%(colliding_dist_being_linked)s' cannot be installed due to a
path collision for '%(target_path)s'.
This path already exists in the target prefix, and it won't be removed
by an uninstall action in this transaction. The path is one that conda
doesn't recognize. It may have been created by another package manager.
"""
)
if context.path_conflict == PathConflict.prevent:
message += (
"If you'd like to proceed anyway, re-run the command with "
"the `--clobber` flag.\n."
)
super().__init__(
message,
context.path_conflict,
target_path=target_path,
colliding_dist_being_linked=colliding_dist_being_linked,
)
class SharedLinkPathClobberError(ClobberError):
def __init__(
self,
target_path: PathType,
incompatible_package_dists: Iterable[PackageRecord | str],
context: Context,
):
message = dals(
"""
This transaction has incompatible packages due to a shared path.
packages: %(incompatible_packages)s
path: '%(target_path)s'
"""
)
if context.path_conflict == PathConflict.prevent:
message += (
"If you'd like to proceed anyway, re-run the command with "
"the `--clobber` flag.\n."
)
super().__init__(
message,
context.path_conflict,
target_path=target_path,
incompatible_packages=", ".join(str(d) for d in incompatible_package_dists),
)
class CommandNotFoundError(CondaError):
def __init__(self, command: str):
activate_commands = {
"activate",
"deactivate",
"run",
}
conda_commands = {
"clean",
"config",
"create",
"--help", # https://github.com/conda/conda/issues/11585
"info",
"install",
"list",
"package",
"remove",
"search",
"uninstall",
"update",
"upgrade",
}
build_commands = {
"build",
"convert",
"develop",
"index",
"inspect",
"metapackage",
"render",
"skeleton",
}
from .cli.main import init_loggers
init_loggers()
if command in activate_commands:
# TODO: Point users to a page at conda-docs, which explains this context in more detail
builder = [
"Your shell has not been properly configured to use 'conda %(command)s'."
]
if on_win:
builder.append(
dals(
"""
If using 'conda %(command)s' from a batch script, change your
invocation to 'CALL conda.bat %(command)s'.
"""
)
)
builder.append(
dals(
"""
To initialize your shell, run
$ conda init <SHELL_NAME>
Currently supported shells are:%(supported_shells)s
See 'conda init --help' for more information and options.
IMPORTANT: You may need to close and restart your shell after running 'conda init'.
"""
)
% {
"supported_shells": dashlist(COMPATIBLE_SHELLS),
}
)
message = "\n".join(builder)
elif command in build_commands:
message = "To use 'conda %(command)s', install conda-build."
else:
from difflib import get_close_matches
from .cli.find_commands import find_commands
message = "No command 'conda %(command)s'."
choices = (
activate_commands
| conda_commands
| build_commands
| set(find_commands())
)
close = get_close_matches(command, choices)
if close:
message += f"\nDid you mean 'conda {close[0]}'?"
super().__init__(message, command=command)
class PathNotFoundError(CondaError, OSError):
def __init__(self, path: PathType):
message = "%(path)s"
super().__init__(message, path=path)
class DirectoryNotFoundError(CondaError):
def __init__(self, path: PathType):
message = "%(path)s"
super().__init__(message, path=path)
class EnvironmentLocationNotFound(CondaError):
def __init__(self, location: PathType):
message = "Not a conda environment: %(location)s"
super().__init__(message, location=location)
class EnvironmentNameNotFound(CondaError):
def __init__(self, environment_name: str):
message = dals(
"""
Could not find conda environment: %(environment_name)s
You can list all discoverable environments with `conda info --envs`.
"""
)
super().__init__(message, environment_name=environment_name)
class NoBaseEnvironmentError(CondaError):
def __init__(self):
message = dals(
"""
This conda installation has no default base environment. Use
'conda create' to create new environments and 'conda activate' to
activate environments.
"""
)
super().__init__(message)
class DirectoryNotACondaEnvironmentError(CondaError):
def __init__(self, target_directory: PathType):
message = dals(
"""
The target directory exists, but it is not a conda environment.
Use 'conda create' to convert the directory to a conda environment.
target directory: %(target_directory)s
"""
)
super().__init__(message, target_directory=target_directory)
class CondaEnvironmentError(CondaError, EnvironmentError):
def __init__(self, message: str, *args):
msg = f"{message}"
super().__init__(msg, *args)
class DryRunExit(CondaExitZero):
def __init__(self):
msg = "Dry run. Exiting."
super().__init__(msg)
class CondaSystemExit(CondaExitZero, SystemExit):
def __init__(self, *args):
msg = " ".join(str(arg) for arg in self.args)
super().__init__(msg)
class PaddingError(CondaError):
def __init__(self, dist: str, placeholder: str, placeholder_length: int):
msg = (
"Placeholder of length '%d' too short in package %s.\n"
"The package must be rebuilt with conda-build > 2.0."
% (placeholder_length, dist)
)
super().__init__(msg)
class LinkError(CondaError):
def __init__(self, message: str):
super().__init__(message)
class CondaOSError(CondaError, OSError):
def __init__(self, message: str, **kwargs):
msg = f"{message}"
super().__init__(msg, **kwargs)
class ProxyError(CondaError):
def __init__(self, message: str | None = None):
if message is None:
message = dals(
"""
Conda cannot proceed due to an error in your proxy configuration.
Check for typos and other configuration errors in any '.netrc' file in your home directory,
any environment variables ending in '_PROXY', and any other system-wide proxy
configuration settings.
"""
)
super().__init__(message)
class CondaIOError(CondaError, IOError):
def __init__(self, message: str, *args):
msg = f"{message}"
super().__init__(msg)
class CondaFileIOError(CondaIOError):
def __init__(self, filepath: PathType, message: str, *args):
self.filepath = filepath
msg = f"'{filepath}'. {message}"
super().__init__(msg, *args)
class CondaKeyError(CondaError, KeyError):
def __init__(self, key: Any, message: str, *args):
self.key = key
self.msg = f"{key!r}: {message}"
super().__init__(self.msg, *args)
class ChannelError(CondaError):
pass
class ChannelNotAllowed(ChannelError):
warning = "Channel not included in allowlist"
def __init__(self, channel: Channel):
channel_name = channel.name
channel_url = maybe_unquote(channel.base_url)
message = dals(
"""
%(warning)s:
channel name: %(channel_name)s
channel url: %(channel_url)s
"""
)
super().__init__(
message,
channel_url=channel_url,
channel_name=channel_name,
warning=self.warning,
)
class ChannelDenied(ChannelNotAllowed):
warning = "Channel included in denylist"
class UnavailableInvalidChannel(ChannelError):
status_code: str | int
def __init__(
self,
channel: Channel | str,
status_code: str | int,
response: requests.models.Response | None = None,
):
# parse channel
channel = Channel(channel)
channel_name = channel.name
channel_url = maybe_unquote(channel.base_url)
# define hardcoded/default reason/message
reason = getattr(response, "reason", None)
message = dals(
"""
The channel is not accessible or is invalid.
You will need to adjust your conda configuration to proceed.
Use `conda config --show channels` to view your configuration's current state,
and use `conda config --show-sources` to view config file locations.
"""
)
if channel.scheme == "file":
url = join_url(channel.location, channel.name)
message += dedent(
f"""
As of conda 4.3, a valid channel must contain a
`noarch/repodata.json` even if `noarch/repodata.json` is
empty. Use `conda index {url}`, or create `noarch/repodata.json`
"""
)
# if response includes a valid json body we prefer the reason/message defined there
try:
body = response.json()
except (AttributeError, JSONDecodeError):
body = {}
else:
reason = body.get("reason") or reason
message = body.get("message") or message
# if RFC 9457 'detail' is present, it is preferred over 'message'
# See https://datatracker.ietf.org/doc/html/rfc9457
message = body.get("detail") or message
# standardize arguments
status_code = status_code or "000"
reason = reason or "UNAVAILABLE OR INVALID"
self.status_code = status_code
super().__init__(
f"HTTP {status_code} {reason} for channel {channel_name} <{channel_url}>\n\n{message}",
channel_name=channel_name,
channel_url=channel_url,
status_code=status_code,
reason=reason,
response_details=stringify(response, content_max_len=1024) or "",
json=body,
)
class OperationNotAllowed(CondaError):
def __init__(self, message: str):
super().__init__(message)
class CondaImportError(CondaError, ImportError):
def __init__(self, message: str):
msg = f"{message}"
super().__init__(msg)
class ParseError(CondaError):
def __init__(self, message: str):
msg = f"{message}"
super().__init__(msg)
class CouldntParseError(ParseError):
def __init__(self, reason: str):
self.reason = reason
super().__init__(self.args[0])
class ChecksumMismatchError(CondaError):
def __init__(
self,
url: str,
target_full_path: PathType,
checksum_type: str,
expected_checksum: str,
actual_checksum: str,
partial_download: bool = False,
):
message = dals(
"""
Conda detected a mismatch between the expected content and downloaded content
for url '%(url)s'.
download saved to: %(target_full_path)s
expected %(checksum_type)s: %(expected_checksum)s
actual %(checksum_type)s: %(actual_checksum)s
"""
)
url = maybe_unquote(url)
super().__init__(
message,
url=url,
target_full_path=target_full_path,
checksum_type=checksum_type,
expected_checksum=expected_checksum,
actual_checksum=actual_checksum,
partial_download=partial_download,
)
class PackageNotInstalledError(CondaError):
def __init__(self, prefix: PathType, package_name: str):
message = dals(
"""
Package is not installed in prefix.
prefix: %(prefix)s
package name: %(package_name)s
"""
)
super().__init__(message, prefix=prefix, package_name=package_name)
class CondaHTTPError(CondaError):
def __init__(
self,
message: str,
url: str,
status_code: int | str,
reason: str,
elapsed_time: timedelta | str,
response: requests.Response | None = None,
caused_by: Any = None,
):
# if response includes a valid json body we prefer the reason/message defined there
try:
body = response.json()
except (AttributeError, JSONDecodeError):
body = {}
else:
reason = body.get("reason") or reason
message = body.get("message") or message
# if RFC 9457 'detail' is present, it is preferred over 'message'
# See https://datatracker.ietf.org/doc/html/rfc9457
message = body.get("detail") or message
# standardize arguments
url = maybe_unquote(url)
status_code = status_code or "000"
reason = reason or "CONNECTION FAILED"
elapsed_time = elapsed_time or "-"
if isinstance(elapsed_time, timedelta):
elapsed_time = str(elapsed_time).split(":", 1)[-1]
# extract CF-RAY
try:
cf_ray = response.headers["CF-RAY"]
except (AttributeError, KeyError):
cf_ray = ""
else:
cf_ray = f"CF-RAY: {cf_ray}\n"
super().__init__(
dals(
f"""
HTTP {status_code} {reason} for url <{url}>
Elapsed: {elapsed_time}
{cf_ray}
"""
)
# since message may include newlines don't include in f-string/dals above
+ message,
url=url,
status_code=status_code,
reason=reason,
elapsed_time=elapsed_time,
response_details=stringify(response, content_max_len=1024) or "",
json=body,
caused_by=caused_by,
)
class CondaSSLError(CondaError):
pass
class AuthenticationError(CondaError):
pass
class PackagesNotFoundError(CondaError):
def __init__(
self,
packages: Iterable[MatchSpec | PackageRecord | str],
channel_urls: Iterable[str] = (),
):
if channel_urls:
message = dals(
"""
The following packages are not available from current channels:
%(packages_formatted)s
Current channels:
%(channels_formatted)s
To search for alternate channels that may provide the conda package you're
looking for, navigate to
https://anaconda.org
and use the search bar at the top of the page.
"""
)
from .base.context import context
if context.use_only_tar_bz2:
message += dals(
"""
Note: 'use_only_tar_bz2' is enabled. This might be omitting some
packages from the index. Set this option to 'false' and retry.
"""
)
packages_formatted = dashlist(packages)
channels_formatted = dashlist(channel_urls)
else:
message = dals(
"""
The following packages are missing from the target environment:
%(packages_formatted)s
"""
)
packages_formatted = dashlist(packages)
channels_formatted = ""
super().__init__(
message,
packages=packages,
packages_formatted=packages_formatted,
channel_urls=list(channel_urls),
channels_formatted=channels_formatted,
)
class NoChannelsConfiguredError(CondaError):
def __init__(self, packages: Iterable[str] = ()):
packages_str = ", ".join(packages) if packages else "the requested packages"
message = dals(
"""
No channels are configured. Conda requires at least one channel to search for packages.
You have attempted to install: %(packages_str)s
To fix this issue, you may do one of the following:
1. Add a channel for this command:
conda install -c <your-channel> %(packages_str)s
2. Configure channels permanently:
conda config --append channels <your-channel>
3. Create or modify your .condarc file to include channels.
For more information, visit: https://docs.conda.io/projects/conda/en/stable/user-guide/configuration/use-condarc.html#channel-locations-channels
and https://docs.conda.io/projects/conda/en/stable/user-guide/concepts/channels.html#specifying-channels-when-installing-packages
"""
)
super().__init__(
message,
packages=list(packages),
packages_str=packages_str,
)
class UnsatisfiableError(CondaError):
"""An exception to report unsatisfiable dependencies.
Args:
bad_deps: a list of tuples of objects (likely MatchSpecs).
chains: (optional) if True, the tuples are interpreted as chains
of dependencies, from top level to bottom. If False, the tuples
are interpreted as simple lists of conflicting specs.
Returns:
Raises an exception with a formatted message detailing the
unsatisfiable specifications.
"""
def _format_chain_str(self, bad_deps: Iterable[Iterable[MatchSpec]]):
chains = {}
for dep in sorted(bad_deps, key=len, reverse=True):
dep1 = [s.partition(" ") for s in dep[1:]]
key = (dep[0],) + tuple(v[0] for v in dep1)
vals = ("",) + tuple(v[2] for v in dep1)
found = False
for key2, csets in chains.items():
if key2[: len(key)] == key:
for cset, val in zip(csets, vals):
cset.add(val)
found = True
if not found:
chains[key] = [{val} for val in vals]
for key, csets in chains.items():
deps = []
for name, cset in zip(key, csets):
if "" not in cset:
pass
elif len(cset) == 1:
cset.clear()
else:
cset.remove("")
cset.add("*")
if name[0] == "@":
name = "feature:" + name[1:]
deps.append(
"{} {}".format(name, "|".join(sorted(cset))) if cset else name
)
chains[key] = " -> ".join(deps)
return [chains[key] for key in sorted(chains.keys())]
def __init__(
self,
bad_deps: Iterable[Iterable[MatchSpec]],
chains: bool = True,
strict: bool = False,
):
from .models.match_spec import MatchSpec
messages = {
"python": dals(
"""
The following specifications were found
to be incompatible with the existing python installation in your environment:
Specifications:\n{specs}
Your python: {ref}
If python is on the left-most side of the chain, that's the version you've asked for.
When python appears to the right, that indicates that the thing on the left is somehow
not available for the python version you are constrained to. Note that conda will not
change your python version to a different minor version unless you explicitly specify
that.
"""
),
"request_conflict_with_history": dals(
"""
The following specifications were found to be incompatible with a past
explicit spec that is not an explicit spec in this operation ({ref}):\n{specs}
"""
),
"direct": dals(
"""
The following specifications were found to be incompatible with each other:
"""
),
"virtual_package": dals(
"""
The following specifications were found to be incompatible with your system:\n{specs}
Your installed version is: {ref}
"""
),
}
msg = ""
self.unsatisfiable = []
if len(bad_deps) == 0:
msg += """
Did not find conflicting dependencies. If you would like to know which
packages conflict ensure that you have enabled unsatisfiable hints.
conda config --set unsatisfiable_hints True
"""
else:
for class_name, dep_class in bad_deps.items():
if dep_class:
_chains = []
if class_name == "direct":
msg += messages["direct"]
last_dep_entry = {d[0][-1].name for d in dep_class}
dep_constraint_map = {}
for dep in dep_class:
if dep[0][-1].name in last_dep_entry:
if not dep_constraint_map.get(dep[0][-1].name):
dep_constraint_map[dep[0][-1].name] = []
dep_constraint_map[dep[0][-1].name].append(dep[0])
msg += "\nOutput in format: Requested package -> Available versions"
for dep, chain in dep_constraint_map.items():
if len(chain) > 1:
msg += f"\n\nPackage {dep} conflicts for:\n"
msg += "\n".join(
[" -> ".join([str(i) for i in c]) for c in chain]
)
self.unsatisfiable += [
tuple(entries) for entries in chain
]
else:
for dep_chain, installed_blocker in dep_class:
# Remove any target values from the MatchSpecs, convert to strings
dep_chain = [
str(MatchSpec(dep, target=None)) for dep in dep_chain
]
_chains.append(dep_chain)
if _chains:
_chains = self._format_chain_str(_chains)
else:
_chains = [", ".join(c) for c in _chains]
msg += messages[class_name].format(
specs=dashlist(_chains), ref=installed_blocker
)
if strict:
msg += (
"\nNote that strict channel priority may have removed "
"packages required for satisfiability."
)
super().__init__(msg)
class RemoveError(CondaError):
def __init__(self, message: str):
msg = f"{message}"
super().__init__(msg)
class DisallowedPackageError(CondaError):
def __init__(self, package_ref: PackageRecord, **kwargs):
from .models.records import PackageRecord
package_ref = PackageRecord.from_objects(package_ref)
message = (
"The package '%(dist_str)s' is disallowed by configuration.\n"
"See 'conda config --show disallowed_packages'."
)
super().__init__(
message, package_ref=package_ref, dist_str=package_ref.dist_str(), **kwargs
)
class SpecsConfigurationConflictError(CondaError):
def __init__(
self,
requested_specs: Iterable[MatchSpec],
pinned_specs: Iterable[MatchSpec],
prefix: PathType,
):
message = dals(
"""
Requested specs conflict with configured specs.
requested specs: {requested_specs_formatted}
pinned specs: {pinned_specs_formatted}
Use 'conda config --show-sources' to look for 'pinned_specs' and 'track_features'
configuration parameters. Pinned specs may also be defined in the file
{pinned_specs_path}.
"""
).format(
requested_specs_formatted=dashlist(requested_specs, 4),
pinned_specs_formatted=dashlist(pinned_specs, 4),
pinned_specs_path=join(prefix, PREFIX_PINNED_FILE),
)
super().__init__(
message,
requested_specs=requested_specs,
pinned_specs=pinned_specs,
prefix=prefix,
)
class CondaIndexError(CondaError, IndexError):
def __init__(self, message: str):
msg = f"{message}"
super().__init__(msg)
class CondaValueError(CondaError, ValueError):
def __init__(self, message: str, *args, **kwargs):
super().__init__(message, *args, **kwargs)
class CyclicalDependencyError(CondaError, ValueError):
def __init__(self, packages_with_cycles: Iterable[PackageRecord], **kwargs):
from .models.records import PackageRecord
packages_with_cycles = tuple(
PackageRecord.from_objects(p) for p in packages_with_cycles
)
message = f"Cyclic dependencies exist among these items: {dashlist(p.dist_str() for p in packages_with_cycles)}"
super().__init__(message, packages_with_cycles=packages_with_cycles, **kwargs)
class CorruptedEnvironmentError(CondaError):
def __init__(
self,
environment_location: PathType,
corrupted_file: PathType,
**kwargs,
):
message = dals(
"""
The target environment has been corrupted. Corrupted environments most commonly
occur when the conda process is force-terminated while in an unlink-link
transaction.
environment location: %(environment_location)s
corrupted file: %(corrupted_file)s
"""
)
super().__init__(
message,
environment_location=environment_location,
corrupted_file=corrupted_file,
**kwargs,
)
class CondaHistoryError(CondaError):
def __init__(self, message: str):
msg = f"{message}"
super().__init__(msg)
class CondaUpgradeError(CondaError):
def __init__(self, message: str):
msg = f"{message}"
super().__init__(msg)
class CondaVerificationError(CondaError):
def __init__(self, message: str):
super().__init__(message)
class SafetyError(CondaError):
def __init__(self, message: str):
super().__init__(message)
class CondaMemoryError(CondaError, MemoryError):
def __init__(self, caused_by: Any, **kwargs):
message = "The conda process ran out of memory. Increase system memory and/or try again."
super().__init__(message, caused_by=caused_by, **kwargs)
class NotWritableError(CondaError, OSError):
def __init__(self, path: PathType, errno: int, **kwargs):
kwargs.update(
{
"path": path,
"errno": errno,
}
)
if on_win:
message = dals(
"""
The current user does not have write permissions to a required path.
path: %(path)s
"""
)
else:
message = dals(
"""
The current user does not have write permissions to a required path.
path: %(path)s
uid: %(uid)s
gid: %(gid)s
If you feel that permissions on this path are set incorrectly, you can manually
change them by executing
$ sudo chown %(uid)s:%(gid)s %(path)s
In general, it's not advisable to use 'sudo conda'.
"""
)
kwargs.update(
{
"uid": os.geteuid(),
"gid": os.getegid(),
}
)
super().__init__(message, **kwargs)
self.errno = errno
class NoWritableEnvsDirError(CondaError):
def __init__(self, envs_dirs: Iterable[PathType], **kwargs):
message = f"No writeable envs directories configured.{dashlist(envs_dirs)}"
super().__init__(message, envs_dirs=envs_dirs, **kwargs)
class NoWritablePkgsDirError(CondaError):
def __init__(self, pkgs_dirs: Iterable[PathType], **kwargs):
message = f"No writeable pkgs directories configured.{dashlist(pkgs_dirs)}"
super().__init__(message, pkgs_dirs=pkgs_dirs, **kwargs)
class EnvironmentIsFrozenError(CondaError):
def __init__(self, prefix: PathType, message: str = "", **kwargs):
error = f"Cannot modify '{prefix}'. The environment is marked as frozen. "
if message:
error += "Reason:\n\n"
error += indent(message, " ")
error += "\n\n"
error += (
"You can bypass these protections with the `--override-frozen` flag,"
" at your own risk."
)
super().__init__(error, **kwargs)
class EnvironmentNotWritableError(CondaError):
def __init__(self, environment_location: PathType, **kwargs):
kwargs.update(
{
"environment_location": environment_location,
}
)
if on_win:
message = dals(
"""
The current user does not have write permissions to the target environment.
environment location: %(environment_location)s
"""
)
else:
message = dals(
"""
The current user does not have write permissions to the target environment.
environment location: %(environment_location)s
uid: %(uid)s
gid: %(gid)s
"""
)
kwargs.update(
{
"uid": os.geteuid(),
"gid": os.getegid(),
}
)
super().__init__(message, **kwargs)
class CondaDependencyError(CondaError):
def __init__(self, message: str):
super().__init__(message)
class BinaryPrefixReplacementError(CondaError):
def __init__(
self,
path: PathType,
placeholder: str,
new_prefix: PathType,
original_data_length: int,
new_data_length: int,
):
message = dals(
"""
Refusing to replace mismatched data length in binary file.
path: %(path)s
placeholder: %(placeholder)s
new prefix: %(new_prefix)s
original data Length: %(original_data_length)d
new data length: %(new_data_length)d
"""
)
kwargs = {
"path": path,
"placeholder": placeholder,
"new_prefix": new_prefix,
"original_data_length": original_data_length,
"new_data_length": new_data_length,
}
super().__init__(message, **kwargs)
class InvalidSpec(CondaError, ValueError):
def __init__(self, message: str, **kwargs):
super().__init__(message, **kwargs)
class InvalidVersionSpec(InvalidSpec):
def __init__(self, invalid_spec: str | MatchSpec, details: str):
message = "Invalid version '%(invalid_spec)s': %(details)s"
super().__init__(message, invalid_spec=invalid_spec, details=details)
class InvalidMatchSpec(InvalidSpec):
def __init__(self, invalid_spec: str | MatchSpec, details: str):
message = "Invalid spec '%(invalid_spec)s': %(details)s"
super().__init__(message, invalid_spec=invalid_spec, details=details)
class EncodingError(CondaError):
def __init__(self, caused_by: Any, **kwargs):
message = (
dals(
"""
A unicode encoding or decoding error has occurred.
Python 2 is the interpreter under which conda is running in your base environment.
Replacing your base environment with one having Python 3 may help resolve this issue.
If you still have a need for Python 2 environments, consider using 'conda create'
and 'conda activate'. For example:
$ conda create -n py2 python=2
$ conda activate py2
Error details: %r
"""
)
% caused_by
)
super().__init__(message, caused_by=caused_by, **kwargs)
class NoSpaceLeftError(CondaError):
def __init__(self, caused_by: Any, **kwargs):
message = "No space left on devices."
super().__init__(message, caused_by=caused_by, **kwargs)
class CondaEnvException(CondaError):
def __init__(self, message: str, *args, **kwargs):
msg = f"{message}"
super().__init__(msg, *args, **kwargs)
class EnvironmentFileInvalid(CondaEnvException):
def __init__(self, msg: str, *args, **kwargs):
msg = f"Provided environment.yaml is invalid: {msg}"
super().__init__(msg, *args, **kwargs)
class EnvironmentFileNotFound(CondaEnvException):
def __init__(self, filename: PathType, *args, **kwargs):
msg = f"'{filename}' file not found"
self.filename = filename
super().__init__(msg, *args, **kwargs)
class EnvironmentFileExtensionNotValid(CondaEnvException):
def __init__(self, filename: PathType, *args, **kwargs):
msg = f"'{filename}' file extension must be one of '.txt', '.yaml' or '.yml'"
self.filename = filename
super().__init__(msg, *args, **kwargs)
class EnvironmentFileTypeMismatchError(CondaError):
def __init__(self, file_types: dict[str, str], *args, **kwargs):
type_groups = defaultdict(list)
for file, file_type in file_types.items():
type_groups[file_type].append(file)
lines = ["Cannot mix environment file formats.\n"]
for file_type, files in type_groups.items():
lines.extend(f"'{file}' is a {file_type} format file" for file in files)
super().__init__("\n".join(lines), *args, **kwargs)
class EnvironmentFileEmpty(CondaEnvException):
def __init__(self, filename: PathType, *args, **kwargs):
self.filename = filename
msg = f"Environment file '{filename}' is empty."
super().__init__(msg, *args, **kwargs)
class EnvironmentFileNotDownloaded(CondaError):
def __init__(self, username: str, packagename: str, *args, **kwargs):
msg = f"{username}/{packagename} file not downloaded"
self.username = username
self.packagename = packagename
super().__init__(msg, *args, **kwargs)
class PluginError(CondaError):
pass
class SpecNotFound(CondaError):
def __init__(self, msg: str, *args, **kwargs):
super().__init__(msg, *args, **kwargs)
class EnvironmentSpecPluginNotDetected(SpecNotFound):
def __init__(
self,
name: str,
plugin_names: Iterable[str],
autodetect_disabled_plugins: Iterable[str] = (),
*args,
**kwargs,
):
self.name = name
msg = dals(
f"""
Environment at {name} is not able to be detected by any installed environment specifier plugins.
Available plugins: {dashlist(plugin_names, 16)}
"""
)
if autodetect_disabled_plugins:
msg += dals(
"""
Found compatible plugins but they must be explicitly selected.
Request conda to use these plugins by providing
the cli argument `--environment-spec PLUGIN_NAME`:
"""
) + dashlist(autodetect_disabled_plugins, 4)
super().__init__(msg, *args, **kwargs)
class EnvironmentExporterNotDetected(CondaError):
def __init__(
self,
filename: str,
exporters: Iterable[CondaEnvironmentExporter],
*args,
**kwargs,
):
self.filename = filename
supported_filenames: list[str] = []
available_formats: list[str] = []
for exporter in exporters:
supported_filenames.extend(
f"{filename:<20} (format: {exporter.name})"
for filename in exporter.default_filenames
)
available_formats.append(
f"{exporter.name:<20} (aliases: {', '.join(exporter.aliases)})"
if exporter.aliases
else exporter.name
)
msg = (
f"No environment exporter plugin found for filename '{filename}'.\n"
f"\n"
f"Supported filenames:{dashlist(supported_filenames)}\n"
f"\n"
f"Available formats:{dashlist(available_formats)}\n"
f"\n"
f"Use conda export --format=FORMAT to specify the export format explicitly, "
f"or rename your file to match a supported filename pattern."
)
super().__init__(msg, *args, **kwargs)
class SpecNotFoundInPackageCache(CondaError):
def __init__(self, msg: str, *args, **kwargs):
super().__init__(msg, *args, **kwargs)
def maybe_raise(error: BaseException, context: Context):
if isinstance(error, CondaMultiError):
groups = groupby(lambda e: isinstance(e, ClobberError), error.errors)
clobber_errors = groups.get(True, ())
groups = groupby(lambda e: isinstance(e, SafetyError), groups.get(False, ()))
safety_errors = groups.get(True, ())
other_errors = groups.get(False, ())
if (
(safety_errors and context.safety_checks == SafetyChecks.enabled)
or (
clobber_errors
and context.path_conflict == PathConflict.prevent
and not context.clobber
)
or other_errors
):
raise error
elif (safety_errors and context.safety_checks == SafetyChecks.warn) or (
clobber_errors
and context.path_conflict == PathConflict.warn
and not context.clobber
):
print_conda_exception(error)
elif isinstance(error, ClobberError):
if context.path_conflict == PathConflict.prevent and not context.clobber:
raise error
elif context.path_conflict == PathConflict.warn and not context.clobber:
print_conda_exception(error)
elif isinstance(error, SafetyError):
if context.safety_checks == SafetyChecks.enabled:
raise error
elif context.safety_checks == SafetyChecks.warn:
print_conda_exception(error)
else:
raise error
def print_conda_exception(exc_val: CondaError, exc_tb: TracebackType | None = None):
from .base.context import context
rc = getattr(exc_val, "return_code", None)
if context.debug or (not isinstance(exc_val, DryRunExit) and context.info):
print(_format_exc(exc_val, exc_tb), file=sys.stderr)
elif context.json:
if isinstance(exc_val, DryRunExit):
return
logger = getLogger("conda.stdout" if rc else "conda.stderr")
exc_json = json_dumps(exc_val.dump_map(), sort_keys=True)
logger.info(f"{exc_json}\n")
else:
stderrlog = getLogger("conda.stderr")
stderrlog.error("\n%r\n", exc_val)
# An alternative which would allow us not to reload sys with newly setdefaultencoding()
# is to not use `%r`, e.g.:
# Still, not being able to use `%r` seems too great a price to pay.
# stderrlog.error("\n" + exc_val.__repr__() + \n")
def _format_exc(
exc_val: BaseException | None = None, exc_tb: TracebackType | None = None
):
if exc_val is None:
exc_type, exc_val, exc_tb = sys.exc_info()
else:
exc_type = type(exc_val)
if exc_tb:
formatted_exception = format_exception(exc_type, exc_val, exc_tb)
else:
formatted_exception = format_exception_only(exc_type, exc_val)
return "".join(formatted_exception)
class InvalidInstaller(Exception):
def __init__(self, name: str):
msg = f"Unable to load installer for {name}"
super().__init__(msg)
class OfflineError(CondaError, RuntimeError):
pass
class CondaUpdatePackageError(CondaError):
def __init__(self, spec: str | list[str]):
spec_format = dashlist(spec, 4) if isinstance(spec, list) else spec
msg = (
f"`conda update` only supports name-only spec, but received: {spec_format}\n"
f"Use `conda install` to install a specific version of a package."
)
super().__init__(msg)
|