Autognosis 的博客
Find yourself,Be yourself
Home
All posts
About
Tags & Stats
Posts
03
Mar 2026
conda报错:conda-libmamba-solver相关的错误
## 问题描述 报错信息: ```txt Error while loading conda entry point: conda-libmamba-solver (cannot import name 'Spinner'...
19
Feb 2026
Windows环境下Nerd Font安装与相关配置指南
## 前言 Starship 是一款基于 Rust 的终端提示符工具,可以自定义终端提示符的样式,提供了丰富的自定义选项,其中很多图标的显示需要依赖 Nerd Fonts。 Nerd Fonts 是包含了Nerd图标的字体的...
07
Jul 2024
Python sorted() 函数与 sort() 方法
## 语法 sorted 语法: ```py sorted(iterable, cmp=None, key=None, reverse=False) """ Args: iterable -- 可迭代对象。 ...