Linux 筆記 #01# 搭建 Python 環境 & vim 代碼高亮

來源:互聯網
上載者:User

標籤:field   upd   img   pac   roo   sse   ftp   build   bz2   

日常收集

vim editor: How do I enable and disable vim syntax highlighting?

 搭建 Python 環境

 

vim editor: How do I enable and disable vim syntax highlighting?

完美解決:https://alvinalexander.com/linux/vi-vim-editor-syntax-highlighting

 

 

搭建 Python 環境

這種題材是不可能原創的:Installing Python 3 on Linux (ps. 這個網站非常符合我的審美)寫一下自己搭的過程,記錄 & 備用:

 1、首先檢查自己的機子有沒有裝 Python 
[email protected]:~# python --versionPython 2.7.9

結果是裝了,但是我不滿意,我一定要裝 Python 3.6

2、然後根據具體作業系統來決定該怎麼做

我用的是  Debian 8.8 64位 ,COPY 自 How to install Python 3.6?

sudo apt-get install python3 沒辦法安裝到最新版本:

sudo apt-get updatesudo apt-get install python3python3 is already the newest version.python -VPython 3.4.2

 需要直接從官網下載:

wget https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tgztar xvf Python-3.6.3.tgzcd Python-3.6.3./configure --enable-optimizationsmake -j8sudo make altinstallpython3.6

逐條輸入指令,耐性等待就可以了。

Some package need to be installed to avoid some known problems

sudo apt-get install -y make build-essential libssl-dev zlib1g-dev   sudo apt-get install -y libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm sudo apt-get install -y libncurses5-dev  libncursesw5-dev xz-utils tk-dev

 (這個可以出了問題再裝)

大功告成圖:

3、Setuptools & Pip 通常情況下已經被預設安裝(Python version > 3.4)

Setuptools 和 Pip 是兩個很關鍵的 Python 第三方包管理工具,詳細參看原教程。

[email protected]:~/Python-3.6.3# command -v pip/usr/local/bin/pip

 

Linux 筆記 #01# 搭建 Python 環境 & vim 代碼高亮

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.