ฉันต้องการติดตั้ง Python และ Git เวอร์ชันใหม่ลงในระบบของฉัน ในที่สุดฉันก็ใช้คำสั่งด้านล่างเพื่อรวบรวมและติดตั้งเวอร์ชันใหม่ อย่างไรก็ตามฉันได้รับแจ้งว่าการใช้make altinstall
Python จะเป็นการดีกว่า มีอะไรผิดปกติกับการติดตั้งเวอร์ชั่นใหม่อย่างที่ฉันทำ?
ติดตั้ง Python จากแหล่งที่มา:
mkdir ~/getpython; cd ~/getpython
wget https://www.python.org/ftp/python/3.4.2/Python-3.4.2.tgz
tar -xvf Python-3.4.2.tgz
cd Python-3.4.2.tgz
sudo apt-get install libssl-dev openssl
./configure
make
sudo make install
ติดตั้ง Git จากแหล่งที่มา:
mkdir ~/getgit; cd ~/getgit
sudo apt-get install libcurl4-openssl-dev libexpat1-dev asciidoc xsltproc xmlto docbook2x
git clone https://github.com/git/git
make prefix=/usr all doc info #note this takes a few minutes
sudo make prefix=/usr install install-doc install-html install-info