2021年1月9日 星期六

macOS 學習筆記 :如何開啟終端機

我的 Mac mini 去年 9 月買來到現在才開機兩次, 今天在看柯博文的 TensorFlow 2 時讀到 macOS 上安裝 Python 的介紹, 就想來檢查看看 macOS 預設是 Python 2 還是 Python 3. 但對 macOS 實在不熟, 開機後居然找不到終端機在哪裡. 

爬文找到下面這篇文章, 原來要從 Finder 進去 (顧名思義就是可以找到你要的東西) :


下方 Docker 最左邊就是 Finder (最右邊是垃圾桶, 這是 Docker 上的保留位置, 不會被刪除), 開啟 Finder 後在 "前往" 功能表中選取 "工具程式" 就可以看到終端機了 :




將其拖曳到桌面或 Docker 中以便往後可快速找到 : 




開啟終端機程式檢查 python 版本 :


Last login: Fri Jan  8 22:12:46 on ttys000

k@kdeMac-mini ~ % python   


WARNING: Python 2.7 is not recommended. 

This version is included in macOS for compatibility with legacy software. 

Future versions of macOS will not include Python 2.7. 

Instead, it is recommended that you transition to using 'python3' from within Terminal.


Python 2.7.16 (default, Jun  5 2020, 22:59:21) 

[GCC 4.2.1 Compatible Apple LLVM 11.0.3 (clang-1103.0.29.20) (-macos10.15-objc- on darwin

Type "help", "copyright", "credits" or "license" for more information.

>>> print 'ok'

ok

>>> k@kdeMac-mini ~ % python3。  

Python 3.7.3 (default, Aug  4 2020, 19:30:55) 

[Clang 11.0.3 (clang-1103.0.32.62)] on darwin

Type "help", "copyright", "credits" or "license" for more information.

>>> 

>>> print('ok')

ok

>>> exit()



可見 python 指令會進入 Python 2 的命令列; 而輸入 python3 才會進入 Python 3 介面 (v3.7.3). 根據 TensorFlow 2 的安裝說明, Python 3.7 版剛好符合目前 TensorFlow 2 支援 Python 3.5~3.8 的要求, 所以不需要安裝更新之版本. 參考 :




沒有留言 :