<pre style="background: rgba(0, 0, 0, 0.298039); border-radius: 0.4em; border: 0px; color: white; font-size: 12.1875px; margin-bottom: 1em; outline: 0px; overflow-x: auto; padding: 8px 10px; vertical-align: baseline;"><code class="language-bash" data-lang="bash" style="background: transparent; border: 0px; font-size: 12px; line-height: 1.6; margin: 0px; outline: 0px; padding: 0px; vertical-align: baseline;">要打的文字</code></pre>
2015年12月31日 星期四
程式碼風格語法
apt-get and brew
apt-get和brew都是系統用來安裝程式的工具。
apt是Debian based的linux系統使用的。 Red Hat-ish Linux使用rpm或yum。而Mac OS則是使用brew(但要自己安裝)[1]。
安裝brew:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
使用brew安裝軟體:
使用apt安裝軟體:
brew install wget
brew在Mac下的安裝路徑/usr/local/Cellar/
[2]使用apt安裝軟體:
apt-get install
apt其他常用指令參考:
https://b9532026.wordpress.com/2010/03/30/apt-get-%E6%8C%87%E4%BB%A4%E4%B8%80%E8%A6%BD-2/
此外,linux系統下還有另一個指令:dpkg,可以用來安裝package。這個指令只會單純的安裝.deb檔,而apt指令則還會幫忙處理一些軟體相關性等問題[3]。
列出已安裝軟體(使用apt):
列出已安裝軟體(使用dpkg):此外,linux系統下還有另一個指令:dpkg,可以用來安裝package。這個指令只會單純的安裝.deb檔,而apt指令則還會幫忙處理一些軟體相關性等問題[3]。
列出已安裝軟體(使用apt):
apt --installed list
dpkg --get-selections
[4]
參考:
[1] http://stackoverflow.com/questions/19688424/why-is-apt-get-function-not-working-in-terminal-on-mac-osx-10-9
[2] http://brew.sh/
[3] http://askubuntu.com/questions/309113/what-is-the-difference-between-dpkg-and-aptitude-apt-get
[4] http://askubuntu.com/questions/17823/how-to-list-all-installed-packages
[2] http://brew.sh/
[3] http://askubuntu.com/questions/309113/what-is-the-difference-between-dpkg-and-aptitude-apt-get
[4] http://askubuntu.com/questions/17823/how-to-list-all-installed-packages
訂閱:
文章 (Atom)