安装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/ppasudo apt-get update
sudo apt-get install git
Ubuntu环境搭建指南
本文详细介绍如何在Ubuntu系统中安装多种开发工具及环境,包括tree文件查看工具、GCC工具链、Python及其依赖pip、版本控制系统git等。适用于初学者快速配置开发环境。
1207

被折叠的 条评论
为什么被折叠?



