fn

Results 5 comments of fn

前几天我在 Anolis OS 8.9 上通过 vfox 安装 Python 环境时也出现类似的问题,但实际上是系统中**缺少了相关的依赖**导致的。 我不太确定具体需要什么依赖库,但是根据检索到的一些资料和多次尝试,只要提前安装这些依赖应该是能正常通过 vfox 安装 Python 的。 ```bash # 添加插件 vfox add python # 安装 git,因为要拉取 python 源码编译 dnf install -y git #...

After installing the command `npm install -g static-marks` in a Chinese environment, I encountered the same error. However, it's amazing that after pulling the project and locally compiling it, the...

1. open file `%userprofile%\documents\.cursor-free-vip\config.ini`. 2. change `default_browser = chrome` to `default_browser = edge`.

You can modify the `%userprofile%\Documents\.cursor-free-vip\config.ini` file as follows: ```diff [Browser] - default_browser = chrome + default_browser = brave ```

其实不必关闭 xxl-job-admin 的鉴权,只要模拟浏览器的操作,先调用登录获取令牌,再在调用其他接口时提供令牌就行了。 比如下面使用 hutool 和 guava 写的一个小示例: ```java public class XxlTest { static final int CACHE_EXPIRED_HOURS = 1; static LoadingCache CACHE = CacheBuilder.newBuilder() .expireAfterWrite(CACHE_EXPIRED_HOURS, TimeUnit.HOURS) .build(CacheLoader.from(XxlTest::login)); static final String...