enums#

conda 中使用的枚举集合。

#

Arch

通用枚举。

Platform

通用枚举。

FileMode

通用枚举。

LinkType

通用枚举。

PathType

指文件是硬链接还是软链接。最初设计用于

PackageType

通用枚举。

NoarchType

通用枚举。

class Arch#

基类: enum.Enum

通用枚举。

从此类派生以定义新的枚举。

x86 = 'x86'#
x86_64 = 'x86_64'#
arm64 = 'arm64'#
armv6l = 'armv6l'#
armv7l = 'armv7l'#
aarch64 = 'aarch64'#
ppc64 = 'ppc64'#
ppc64le = 'ppc64le'#
riscv64 = 'riscv64'#
s390x = 's390x'#
wasm32 = 'wasm32'#
z = 'z'#
classmethod from_sys()#
__json__()#
class Platform#

基类: enum.Enum

通用枚举。

从此类派生以定义新的枚举。

freebsd = 'freebsd'#
linux = 'linux'#
win = 'win32'#
openbsd = 'openbsd5'#
osx = 'darwin'#
zos = 'zos'#
emscripten = 'emscripten'#
wasi = 'wasi'#
classmethod from_sys()#
__json__()#
class FileMode#

基类: enum.Enum

通用枚举。

从此类派生以定义新的枚举。

text = 'text'#
binary = 'binary'#
__str__()#

返回 str(self)。

class LinkType#

基类: enum.Enum

通用枚举。

从此类派生以定义新的枚举。

copy = 3#
directory = 4#
__int__()#
__str__()#

返回 str(self)。

__json__()#
class PathType#

基类: enum.Enum

指文件是硬链接还是软链接。最初设计用于 paths.json

directory = 'directory'#
linked_package_record = 'linked_package_record'#
pyc_file = 'pyc_file'#
unix_python_entry_point = 'unix_python_entry_point'#
windows_python_entry_point_script = 'windows_python_entry_point_script'#
windows_python_entry_point_exe = 'windows_python_entry_point_exe'#
basic_types()#
__str__()#

返回 str(self)。

__json__()#
class PackageType#

基类: enum.Enum

通用枚举。

从此类派生以定义新的枚举。

NOARCH_GENERIC = 'noarch_generic'#
NOARCH_PYTHON = 'noarch_python'#
VIRTUAL_PRIVATE_ENV = 'virtual_private_env'#
VIRTUAL_PYTHON_WHEEL = 'virtual_python_wheel'#
VIRTUAL_PYTHON_EGG_MANAGEABLE = 'virtual_python_egg_manageable'#
VIRTUAL_PYTHON_EGG_UNMANAGEABLE = 'virtual_python_egg_unmanageable'#
VIRTUAL_SYSTEM = 'virtual_system'#
static conda_package_types()#
static unmanageable_package_types()#
class NoarchType#

基类: enum.Enum

通用枚举。

从此类派生以定义新的枚举。

generic = 'generic'#
python = 'python'#
static coerce(val)#