pip安装zip失败

在服务器上解压文件,执行了 unzip myfile.zip 后出现-bash: unzip: command not found

那就是没有zip这个包了,然后我执行了pip install zip,有如下报错

显示安装了,而且pip list 查看也确实有。警告的内容显示pip版本低了,继续执行 

unzip myfile.zip

还是报错,找不到命令。然后尝试更新了一下pip,跳转到/usr/bin下执行

python -m pip install --upgrade pip

还是没有更新成功,提示pip版本过低。尝试用python3更新。

python3 -m pip install --upgrade pip

 又出现这样的报错

WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
试着换了一下镜像源重新安装zip

 pip3 install zip -i https://pypi.mirrors.ustc.edu.cn/simple/

 又有了新的报错

pip安装zip失败_第1张图片

 应该是wsgrief这个包下载出错了。在报错内容找到相应的地址下载安装,安装成功,但是还是报错了。

又更新服务器的安装包

apt-get update
apt-get install -y python-qt4 libgl1-mesa-glx

更新之后,zip的安装并未成功。

后来用下面指令尝试了一下,终于成功。解压压缩包也成功了。

 apt-get install zip

使用服务器得先要查看Ubuntu的版本呀!

uname -a

然后再去对应其权限指令,安装权限许可的包。

下面提供一种修改镜像源的方法,在终端执行如下命令:

conda config --remove-key channels
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.bfsu.edu.cn/anaconda/cloud/pytorch/
conda config --set show_channel_urls yes
pip config set global.index-url https://mirrors.ustc.edu.cn/pypi/web/simple

 

你可能感兴趣的:(pip,linux,运维)