zoukankan
html css js c++ java
Mac下如何解决vim ~/.bash_profile 报错 E325: ATTENTION Found a swap file by the name ".bash_profile.swp"
当你 输入vim ~/.bash_profile设置立即生效时候会报这个错误
这个是没有关系:
这是由于在编辑该文件的时候异常退出了,因为vim在编辑文件时会创建一个交换文件swap file以保证文件的安全性。
解决办法:
输入 q(退出)
然后在终端出入:rm -f ~/.bash_profile.swp
最后你在终端输入 vim ~/.bash_profile 就可以了
查看全文
相关阅读:
Mysql:Optimization and Indexes:优化-索引
Mysql:Optimizing for Many Tables:如果你的表太多,怎办?
Mysql:Internal Temporary Table:【不可直接控制】的【内部】临时表:不要blob、不要text、不要太长>512的(二进制)字符串列!
Mysql:Optimizing Memory Use、Enabling Large Page Support:内存使用优化:【global + session】
Mysql:Symbolic Links:软链接(符号链接)
Mysql:--secure-auth、--secure-file-priv
Mysql:Security Issues with LOAD DATA LOCAL:【LOCAL】关键字的安全问题:--load-infile
续:MONyog 8.9.1:IderaSQLDiagnosticManagerForMySQL-Windows-x86 8.9.1:无限期试用:变相破解
续:SQLyog Trial v13.1.5 x64:无限期试用:变相破解
SpringBoot文件的上传与下载
原文地址:https://www.cnblogs.com/chenyablog/p/14498769.html
最新文章
wordpress自动截取文章摘要代码
语言模型系列(一)——AWD-LSTM
深度学习优化理论综述——Optimization for deep learning: theory and algorithms
FSL(小样本学习)综述——Generalizing from a Few Examples: A Survey on Few-Shot Learning
bert剪枝系列——Are Sixteen Heads Really Better than One?
tensorflow模型量化实例
Quantization aware training 量化背后的技术——Quantization and Training of Neural Networks for Efficient Integer-Arithmetic-Only Inference
句子对关系预测——交互式模型
bert,albert的快速训练和预测
NLP中的预训练语言模型(五)—— ELECTRA
热门文章
配置Windows 2008 R2 防火墙允许远程访问SQL Server 2008 R2
heroku空间部署步骤
网站部署后Parser Error Message: Could not load type 的解决方案
C#中准确跟踪错误异常所在的文件位置方法
*(转)超时时间已到。超时时间已到 但是尚未从池中获取连接。出现这种情况可能是因为所有池连接均在使用 并且达到了最大池大小。
情感分析资源 (转)
布朗语料库中条件概率分布函数ConditionalFreqDist使用
一些常用的NLTK频率分布类中定义的函数
利用Aspose.Cells完成easyUI中DataGrid数据的Excel导出功能
XP:最后的firefox浏览器:Firefox52.90版是最后一个支持 Windows XP 和 Windows Vista 的升级版
Copyright © 2011-2022 走看看