zoukankan      html  css  js  c++  java
  • curl无法正常使用

    yum安装的curl无法正常使用

    [root@centos ~]# yum -y install curl
    Loaded plugins: fastestmirror, langpacks
    Loading mirror speeds from cached hostfile
    Package curl-7.29.0-57.el7_8.1.x86_64 already installed and latest version
    Nothing to do
    [root@centos ~]# rpm -qa|grep curl
    python-pycurl-7.19.0-19.el7.x86_64
    libcurl-7.29.0-57.el7_8.1.x86_64
    curl-7.29.0-57.el7_8.1.x86_64
    [root@centos ~]# curl --version
    -bash: curl: command not found
    

    使用yum安装curl时,提示已经安装,但是curl相关命令无法使用,使用rpm查看,确认curl已经安装。

    解决:卸载curl重新安装

    [root@centos ~]# rpm -e --nodeps curl
    warning: file /usr/bin/curl: remove failed: No such file or directory
    
    [root@centos ~]# yum remove curl
    Loaded plugins: fastestmirror, langpacks
    No Match for argument: curl
    No Packages marked for removal
    
    [root@centos ~]# rpm -qa|grep curl
    python-pycurl-7.19.0-19.el7.x86_64
    libcurl-7.29.0-57.el7_8.1.x86_64
    
    [root@centos ~]# yum -y install curl
    
    
    [root@centos ~]# curl --version
    curl 7.29.0 (x86_64-redhat-linux-gnu) libcurl/7.29.0 NSS/3.44 zlib/1.2.7 libidn/1.28 libssh2/1.8.0
    Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp scp sftp smtp smtps telnet tftp 
    Features: AsynchDNS GSS-Negotiate IDN IPv6 Largefile NTLM NTLM_WB SSL libz unix-sockets 
    
  • 相关阅读:
    webpack
    线程和同步
    C#高性能TCP服务
    平台架构实践
    异步
    net MVC 的八个扩展点
    Python计算&绘图——曲线拟合问题(转)
    最小二乘法多项式曲线拟合原理与实现(转)
    Apache Commons Math3学习笔记(2)
    最小二乘法拟合java实现源程序(转)
  • 原文地址:https://www.cnblogs.com/A-Nan-q/p/15401437.html
Copyright © 2011-2022 走看看