输入python看默认版本,一般是2.7。 1、删除软链接命令 pi@raspberrypi:~ $ sudo rm /usr/bin/python 2、查看本机安装的python版本及路径 pi@raspberrypi:~ $ whereis python python: /usr/bin/pyt ...
分类:
编程语言 时间:
2021-07-14 18:43:59
阅读次数:
0
cd /etc/yum.repos.d/ rm -f CentOS-Base.repo CentOS-AppStream.repo CentOS-PowerTools.repo CentOS-centosplus.repo CentOS-Extras.repo curl -o CentOS-Base ...
分类:
其他好文 时间:
2021-07-05 16:52:40
阅读次数:
0
before commit, do: git rm --cached <filename> ATTENTION: do not use 'git rm <filename>', this will delete the file from disk if commited, first use: " ...
分类:
其他好文 时间:
2021-07-01 17:07:16
阅读次数:
0
//-n 预览需要删除版本控制的文件列表 git rm -r -n --cached "vendor" //执行删除命令 git rm -r --cached "vendor" //添加文件到.gitignore //提交git commit -m "remove vendor" //提交到远程服务 ...
分类:
其他好文 时间:
2021-07-01 17:03:23
阅读次数:
0
背景 参考了狂神老师的 Docker 教程,非常棒! https://www.bilibili.com/video/BV1og4y1q7M4?p=15 直接运行容器 本地找不到镜像会自动下载 --rm Automatically remove the container when it exits ...
分类:
其他好文 时间:
2021-07-01 16:48:43
阅读次数:
0
1、 rm(list = ls()) dir() for (i in list.files(pattern=".r$")) { source(i) } 2、 rm(list = ls()) dir() for (i in dir()) { if(substr(i,nchar(i)-1,nchar(i ...
分类:
编程语言 时间:
2021-06-29 15:38:29
阅读次数:
0
1.删除运行路径和运行环境等 sudo rm -fr /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin 输入密码: sudo rm -fr /Library/PreferencesPanes/JavaControlPanel.prefPane s ...
分类:
系统相关 时间:
2021-06-24 17:35:34
阅读次数:
0
服务器svn重新生成--Git clone 1588 svn info 1589 cd .. 1590 rm rules -fr 1591 ls 1592 svn up 1593 svn co http://svn.xxxxx.com/xxxxx/uledeploy_doc/prometheus/r ...
分类:
其他好文 时间:
2021-06-22 18:16:56
阅读次数:
0
把当前目录变为git仓库 git init 关联到远程仓库 # 添加关联的仓库地址 git remote add origin git@github.com:wintests/gitDemo.git # 删除当前已关联的仓库地址 git remote rm origin 查看远程库的详细信息 git ...
分类:
其他好文 时间:
2021-06-20 17:40:11
阅读次数:
0
删除、卸载 sudo rm /etc/apt/sources.list.d/cuda* sudo apt-get --purge remove "*cublas*" "cuda*" "nsight*" sudo apt-get --purge remove "*nvidia*" sudo apt-g ...
分类:
其他好文 时间:
2021-06-16 17:58:13
阅读次数:
0