Autognosis 的博客
Find yourself,Be yourself
Home
All posts
About
Tags & Stats
03
Mar 2026
conda报错:conda-libmamba-solver相关的错误
129 words, ~0 min read
conda
conda-libmamba-solver
报错
## 问题描述 报错信息: ```txt Error while loading conda entry point: conda-libmamba-solver (cannot import name 'Spinner' from ...
19
Feb 2026
Windows环境下Nerd Font安装与相关配置指南
1,006 words, ~4 min read
Nerd Font
Windows
配置
VS Code
Starship
PowerShell
## 前言 Starship 是一款基于 Rust 的终端提示符工具,可以自定义终端提示符的样式,提供了丰富的自定义选项,其中很多图标的显示需要依赖 Nerd Fonts。 Nerd Fonts 是包含了Nerd图标的字体的统称,St...
08
Feb 2026
大陆使用antigravity避坑指南
1,102 words, ~4 min read
Antigravity
Google
AI
避坑
羊毛
## 前言 Antigravity是一款由Google开发的AI编程工具,它能够帮助开发者更高效地编写代码。然而,由于网络限制,大陆用户在使用Antigravity时可能会遇到一些问题。本文将介绍如何在大陆使用Antigravity,并...
07
Jul 2024
Python sorted() 函数与 sort() 方法
129 words, ~0 min read
Python
## 语法 sorted 语法: ```py sorted(iterable, cmp=None, key=None, reverse=False) """ Args: iterable -- 可迭代对象。 cmp -...