
Error
「已注销」
本博客现只用于学习用,可能会转载他人的知识,若有涉及到您的版权问题,请与我联系。
展开
-
pip3 list Abort trap: 6的解决方案
openssl的错误。brew update && brew upgrade && brew install openssl##note: some people report that the dylib files needed in #3 are in the 1.0.2t folder, rather than the lib folder. adju...原创 2020-03-29 22:02:23 · 638 阅读 · 0 评论 -
git@github.com: Permission denied (publickey). Could not read from remote repository.
ssh -T git@github.comgit@github.com: Permission denied (publickey).执行git-add就好了::ssh-add ~/.ssh/823952051@qq.comIdentity added: /root/.ssh/823952051@qq.com (/root/.ssh/823952051@qq.com):ssh -T g...原创 2020-03-24 01:45:55 · 423 阅读 · 0 评论 -
error:Permissions 0644 for '_rsa' are too open. It is required that your priv
配了ssh没生效啊:@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ WARNING: UNPROTECTED PRIVATE KEY FILE! @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Permissio...原创 2020-03-22 23:12:29 · 892 阅读 · 0 评论 -
ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1
解决方案:编译选项添加-lstdc++今天编写一个简单的代码,报错了:template<typename T>class matrix final{public: matrix(uint32_t size): SIZE(size) { _data = static_cast<T**>(malloc(SIZE * sizeof(T*))); fo...原创 2020-03-13 22:08:53 · 3276 阅读 · 0 评论 -
error: invalid initialization of reference of type ‘std::string&’ from expression of type ‘const s
error: invalid initialization of reference of type ‘std::string&’ from expressionof type ‘const std::basic_string<char, std::char_traits, std::allocator >’//main.cpp#include <iostream&...原创 2020-03-13 11:25:59 · 7195 阅读 · 1 评论 -
Unable to find Mach task port for process-id : (os/kern) failure (0x5). (please check gdb is codesi
(gdb) runStarting program: /Users/lurongming/test/cpptest/mainUnable to find Mach task port for process-id 33242: (os/kern) failure (0x5).(please check gdb is codesigned - see taskgated(8))mac 下使用...原创 2020-03-11 19:38:13 · 7347 阅读 · 0 评论 -
提示:更新被拒绝,因为您当前分支的最新提交落后于其对应的远程分支。 提示:再次推送前,先与远程变更合并(如 'git pull ...')。详见 提示:'git push --help' 中的 'No
:git push origin masterTo https://github.com/LLLUZHAO/Test.git ! [rejected] master -> master (non-fast-forward)error: 推送一些引用到 'https://github.com/LLLUZHAO/Test.git' 失败提示:更新被拒绝,因为您当前分支的最新...原创 2020-03-10 06:09:54 · 8887 阅读 · 0 评论 -
error: 没有父提交的情况下不能 'fixup' 您可以用 'git rebase --edit-todo' 修正,然后执行 'git rebase --continue'。或者您可以用 'git
error: 没有父提交的情况下不能 ‘fixup’ 您可以用 ‘git rebase --edit-todo’ 修正,然后执行 ‘git rebase --continue’。 或者您可以用 'gi使用rebase的时候出现错误。是因为在rebase的时候最上层一定要出现保留一个commit。举个例子,可以是:pick f6451e9 addfixup 36dc32d add而不可...原创 2020-03-10 04:58:54 · 6238 阅读 · 2 评论 -
crontab: no crontab for lurongming - using an empty one crontab: "/usr/bin/vi" exited with status 1
终端的时候使用crontab出现的错误。解决办法:EDITOR=vim crontab -eexport EDITOR=vim(如果需要永久修改,请编辑profile文件)原创 2020-03-08 15:31:04 · 738 阅读 · 0 评论