当前位置:首页 > linux > 正文内容

Cannot uninstall 'ipaddress'. It is a distutils installed project and thus

root3年前 (2020-12-01)linux623

强制升级:
sudo pip install --ignore-installed +模块名

扫描二维码推送至手机访问。

版权声明:本文由一叶知秋发布,如需转载请注明出处。

本文链接:https://zhiqiu.top/?id=55

分享给朋友:

相关文章

修改linux时区

ubuntu:rm  /etc/localtimeln -sf /usr/share/zoneinfo/Asia/Shanghai  /etc/localtimecentos echo "A...

tcpdump 抓包命令

网络数据包截获分析工具。支持针对网络层、协议、主机、网络或端口的过滤。并提供and、or、not等逻辑语句帮助去除无用的信息。tcpdump tcp -i eth1 -t -s 0 -c 100 and dst port ! 22 and...

docker重新进入容器时source /etc/profile 中环境变量失效问题的解决

如果在docker中设置了环境变量,肯定希望下次进入容器时自动生效。如果是在:/etc/profile中设置的,再次进入容器时环境变量会失效,解决办法是将环境变量设置在:/root/.bashrc或者/etc/bashrc中设置推荐设置在/...

shell获取当前文件路径

curPath=$(readlink -f "$(dirname "$0")") echo $curPath    #或者 curPath=$(dirname $(readli...

linux创建用户和用户组

添加用户和组groupadd testuseradd -r -g test test删除用户和组userdel testgroupdel test给文件添加用户组和用户归属chown -R test:test test_file...

centos yum 找不到包

yum -y install epel-release安装依赖源...