47 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | ||
| title: Installing Devtools and Modern Web Browsers
 | ||
| localeTitle: 安装Devtools和现代Web浏览器
 | ||
| ---
 | ||
| 我们将向您展示如何在Ubuntu上安装各种编程语言,开发工具和Web浏览器。
 | ||
| 
 | ||
| ## 广泛使用的工具:
 | ||
| 
 | ||
| ### 混帐
 | ||
| ```
 | ||
| sudo apt-get install git 
 | ||
| ```
 | ||
| 
 | ||
| ### 节点JS
 | ||
| ```
 | ||
| curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash 
 | ||
|  nvm install stable 
 | ||
| ```
 | ||
| 
 | ||
| ### 红宝石
 | ||
| ```
 | ||
| curl -sSL https://get.rvm.io | bash -s stable 
 | ||
|  rvm install 2.3.1 
 | ||
| ```
 | ||
| 
 | ||
| ### 蟒蛇
 | ||
| 
 | ||
| `Python 2`和`Python 3`预先安装在Ubuntu桌面上。
 | ||
| 
 | ||
| ### 现代Web浏览器
 | ||
| 
 | ||
| 开发人员使用的最流行的Web浏览器是[Chrome](https://www.google.com/chrome/) / [Chromium](https://www.chromium.org/)和[Firefox Developer Edition](https://www.mozilla.org/firefox/developer/) 。
 | ||
| 
 | ||
| **安装Chromium:**
 | ||
| ```
 | ||
| sudo apt-get install chromium-browser 
 | ||
| ```
 | ||
| 
 | ||
| **安装Firefox Developer Edition:**
 | ||
| ```
 | ||
| sudo add-apt-repository ppa:ubuntu-mozilla-daily/firefox-aurora 
 | ||
|  sudo apt-get update 
 | ||
|  sudo apt-get install firefox 
 | ||
| ```
 | ||
| 
 | ||
| 上一页| 家 |下一个  
 | ||
| [**爵士乐终端**](//forum.freecodecamp.com/t/jazzing-up-the-terminal/18386) | [**目录**](//forum.freecodecamp.com/t/setting-up-ubuntu-for-programming/18388) | [**下载文本编辑器和IDE**](//forum.freecodecamp.com/t/downloading-text-editors-and-ides/18384) |