sh 在Ubuntu 14.04上更新curl

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 在Ubuntu 14.04上更新curl相关的知识,希望对你有一定的参考价值。

#! /usr/bin/env bash

# Install any build dependencies needed for curl
sudo apt-get build-dep curl

# Get latest (as of Feb 25, 2016) libcurl
mkdir ~/curl
cd ~/curl
wget http://curl.haxx.se/download/curl-7.50.2.tar.bz2
tar -xvjf curl-7.50.2.tar.bz2
cd curl-7.50.2

# The usual steps for building an app from source
# ./configure
# ./make
# sudo make install
./configure
make
sudo make install

# Resolve any issues of C-level lib
# location caches ("shared library cache")
sudo ldconfig

以上是关于sh 在Ubuntu 14.04上更新curl的主要内容,如果未能解决你的问题,请参考以下文章

sh 在Ubuntu 14.04上更新curl

sh 在Ubuntu 14.04上更新curl

sh 在Ubuntu 14.04上更新curl

sh 在Ubuntu 14.04上更新curl

sh 在Ubuntu 14.04上更新curl

sh 在Ubuntu 14.04上更新curl