工具安装与配置
1、LS_COLOR的设置:https://blog.csdn.net/CanoeStream/article/details/7625537(影响tree命令)
2、brew 安装tree 贼慢无比,用这个 贼快:https://www.jianshu.com/p/e038506da986
3、idea 2020.1 破解到2089年:http://www.zzvips.com/article/67755.html
4、idea 安装卸载后打不开,如何彻底卸载idea:https://blog.csdn.net/sqf_csdn/article/details/107808060?utm_medium=distribute.pc_relevant_t0.none-task-blog-blogcommendfrommachinelearnpai2-1.add_param_iscf&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-blogcommendfrommachinelearnpai2-1.add_param_iscf
5、vimrc 比较好的配置:https://github.com/amix/vimrc
6、pip3 或者pip install 报错permission deny时,需要给pip或者pip3 提权,提权方法如下:https://blog.csdn.net/dfciw9355481/article/details/101292201?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param
7、 linux 环境下maven安装报错,直接看 它的readme.txt指导,一步一步操作,特别是环境配置上,按照readme.txt去操作就可以
8、maven 执行特定的测试case时,报错“Please verify you invoked Maven from the correct directory.”
解决办法:https://blog.csdn.net/ypp91zr/article/details/79268998
9、如何在linux 下直接安装jdk8:https://cloud.tencent.com/developer/article/1447083
10、lcov安装后,提示command not found:https://blog.csdn.net/ytx2014214081/article/details/79595310(有效的解决办法)
11、如何安装thrift:https://www.cnblogs.com/he-px/p/7927766.html(避开了很多坑,比如源码安装0.8.0版本时,我遇到了trhift configure: error: "Error: libcrypto required."编译错误,无需重新安装,直接使用该文档中的./configure 的配置,即可成功编译)
12.linux 的root用户都无法操作某个文件,为什么?现象:chmod: changing permissions of ‘appenv’: Operation not permitted
https://blog.csdn.net/qq_35789269/article/details/110357039
13.当你发现pip3 install xx 连接超时,安装不了的时候:https://cloud.tencent.com/developer/article/1354614。
pip install xx -i http://pypi.douban.com/simple --trusted-host pypi.douban.com 可解决问题
14.明明已经安装了Crypto,还是要报错No module named 'Crypto'。因为pip3 安装下来的模块的名字是小写的crypto,代码使用的模块名是大写的,这两处不一样。
找到/Library/Python/3.8/site-packages下的crypto,把包名改成和代码引用的一致,就不会再报找不到这个模块了。
15.找不到pip安装的包在哪里了:https://blog.csdn.net/ninnyyan/article/details/80485507
16.npm 安装vue-cli 不成功,报错没有操作权限:https://blog.csdn.net/KimBing/article/details/88821182
17. "gyp: No Xcode or CLT version detected!"报错,https://yleen.cc/archives/27.html
18.本地代码(5无git),关联到远程仓库,git remote add origin ssh://xxx.git,然后git add 、commit 、push 三步走,将代码推送到远程仓库。
19.maven 版本升级:https://blog.csdn.net/nklinsirui/article/details/88568369(亲测可用)
20.linux 多了'(base)':https://blog.csdn.net/Just_youHG/article/details/104686642
21.mybaitis generator 报错“找不到或无法加载主类 archetypeCatalog=internal”,只需要配置https://blog.csdn.net/weixin_43654123/article/details/120794330
22.idea 切完python环境后,切回java环境,报错:Error:java: Compilation failed: internal java compiler error,对齐这几项:https://www.jianshu.com/p/cbc929122df3
23.如何架构图,https://www.zhihu.com/question/27440059,非常好的学习资料
24.子项目版本不生效,要怎么操作生效,https://www.jianshu.com/p/e9791e68f943(没亲测过,但是看上去挺靠谱的)
25.git stash 后如何恢复修改:https://www.cnblogs.com/duanweishi/p/16558871.html