1. 程式人生 > >Ubuntu Bash on windows win10子系統常用軟體配置

Ubuntu Bash on windows win10子系統常用軟體配置

安裝tree檔案檢視工具

sudo apt install tree

安裝GCC工具鏈

sudo apt-get install build-essential

安裝python

(從python官網下載解壓)

wget https://www.python.org/ftp/python/3.6.4/Python-3.6.4.tar.xz  
xz -d Python-3.6.4.tar.xz  
tar -xvf  Python-3.6.4.tar  
cd Python-3.6.4  
./configure  
make  
sudo make install 

(安裝pyenv管理多版本python:http://www.cnblogs.com/ningvsban/p/4384995.html)

給Ubuntu自帶python3版本安裝pip並用pip安裝django

sudo apt-get install python3-pip 
sudo pip3 install django

安裝git

sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git