Ubuntu18.04下使用pip3.8报错subprocess.CalledProcessError: Command ‘(‘lsb_release‘, ‘-a‘)‘ returned non-ze
摘要:
Ubuntu18.04下使用pip3.8报错 前言 报错信息 原因 解决办法 前言 Ubuntu系统中没有python3.8,安装完之后将pip3软连接到pip3.8后,执行pip3 list报错,原环境上安装的是python3.6。 报错信息 subprocess.CalledProcessErr 阅读全文
摘要:
报错截图 解决办法: 1.切换到root状态下,安装sqlite3依赖 apt-get install libsqlite3-dev 2.重新编译安装Python tar -xzvf Python-3.8.3.tgzcd Python-3.8.3/./configure prefix=/usr/lo 阅读全文
摘要:
shell命令中find的用法 find $current_dir/log/ServiceMainBody_log -name “output*” -mtime +10 -exec rm {} \;** -name filename #查找名为filename的文件-exec: #find命令对匹配 阅读全文
摘要:
Ubuntu 中卸载软件 1. dpkg --list 查看软件 2. 输入命令sudo apt-get --purge remove 包名(–purge是可选项,写上这个属性是将软件及其配置文件一并删除,如不需要删除配置文件,可执行sudo apt-get remove 包名),按下回车,输入密码 阅读全文
摘要:
一、安装 1. 安装完成之后,在终端输入 git --version 查看版本信息 2. 创建一个全局用户名、全局邮箱作为配置信息 git config --global user.name "your_name" git config --global user.email "your_emai 阅读全文