Results 8 comments of duval1024

编码规范考虑划分如下大章节: - 命名 - 本地变量命名 - 全局变量命名 - 全局常量命名 - 结构体命名 - 函数命名 - 注释 - 函数注释 - 结构体注释 - 控制结构 - 编码风格 - 代码对齐 - ...

I am writing the first edition of the code specification,and try to add it to this issue before this weekend.

@faunaee 's solution do not work for me. ` go version go1.17.11 darwin/amd64 ` ``` panic: load embedded ruleguard rules: rules/rules.go:13: can't load fmt goroutine 1 [running]: github.com/go-critic/go-critic/checkers.init.22() github.com/go-critic/[email protected]/checkers/embedded_rules.go:47 +0x494...

same problem on centos8 i had tried reinstall python(3.10.6) and pip, and remove the 'venv' folder,but it not work ``` Could not fetch URL https://download.pytorch.org/whl/cu117/torch/: There was a problem confirming...

/> same problem on centos8 i had tried reinstall python(3.10.6) and pip, and remove the 'venv' folder,but it not work > > ``` > Could not fetch URL https://download.pytorch.org/whl/cu117/torch/: There...

如果遇到上述问题,应该是linux共享库的zlib版本过低,升级到1.2.9版本即可: 1. http://www.zlib.net/fossils/ 下载1.2.9的zlib压缩包; 2. 解压 tar -xvf zlib-1.2.9.tar.gz && cd zlib-1.2.9 3. sudo -s # 进入root用户(务必执行这步且后续不能退出root,否则会导致sudo命令无法使用) 4. ./configure && make && make install 5. 根据你的报错信息里的路径删除原来so的文件软链接,比如我的例子是/lib64/libz.so.1。删除前务必确保第3步是正确的 6. ln -s /usr/local/lib/libz.so.1.2.9...

修正最开始的错误之后,又出现: ``` OSError: /lib64/libstdc++.so.6: version `CXXABI_1.3.9' not found ``` 查了下也是某个共享库过老,参考这文章的方法1或2解决:https://www.cnblogs.com/jimlau/p/13263052.html