您好,登錄后才能下訂單哦!
有兩種安裝方法:
$brewinstall python
如果出錯的話前面加上sudo
方法一安裝的是python2.7
方法二:從官網下載安裝最新版本(本次安裝的內容)
官網地址:https://www.python.org/download,下載安裝最新版的python ,安裝簡單,一路點擊OK;不便之處是后續卸載維護需要手動進行。
可以用這個命令查看python3安裝的位置:
$which python3
安裝完成后在終端中鍵入python3來驗證安裝是否成功.
打開Mac終端,輸入“python3”,回車,查看是否是自己裝的Python版本(如果Mac系統版本是10.8—10.11,默認自帶的是Python2.7)。輸入Python3后,看到顯示【>>>】,說明已經在Python的交互環境中了,可以正常使用。
這里安裝的是pip3。
安裝了python3之后,會有pip3
注意:
1. 使用pip install XXX
新安裝的庫會放在這個目錄下面
python2.7/site-packages
2. 使用pip3 install XXX
新安裝的庫會放在這個目錄下面
python3.6/site-packages
如果使用python3執行程序,那么就不能import python2.7/site-packages中的庫
pip3 是一個安裝和管理 Python3 包的工具,pip 是一個安裝和管理 Python 包的工具,python安裝包的工具有easy_install, setuptools, pip,distribute等。distribute是setuptools的替代品,是對標準庫disutils模塊的增強,我們知道disutils主要是用來更加容易的打包和分發包,特別是對其他的包有依賴的包。distribute被創建是因為Setuptools包不再維護了。而pip/pip3是easy_install的替代品。
$wget https://bootstrap.pypa.io/get-pip.py
如果沒有安裝wget可以去這里:https://ftp.gnu.org/gnu/wget/下載
可以輸入wget www.baidu.com 測試是否安裝成功
將所有內容復制下來,新建get-pip.py文件,將內容拷貝粘貼進去.
執行命令行:
$ sudo python3 get-pip.py
執行出錯:
The directory '/Users/xsnai/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
換成下列命令:
$sudo -H python3 get-pip.py
Requirement already up-to-date: pip in /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages
執行成功!
終端命令行輸入pip3檢測。
檢測結果:
Usage: pip <command> [options] Commands: install Install packages. download Download packages. uninstall Uninstall packages. freeze Output installed packages in requirements format. list List installed packages. show Show information about installed packages. check Verify installed packages have compatible dependencies. search Search PyPI for packages. wheel Build wheels from your requirements. hash Compute hashes of package archives. completion A helper command used for command completion. help Show help for commands. General Options: -h, --help Show help. --isolated Run pip in an isolated mode, ignoring environment variables and user configuration. -v, --verbose Give more output. Option is additive, and can be used up to 3 times. -V, --version Show version and exit. -q, --quiet Give less output. Option is additive, and can be used up to 3 times (corresponding to WARNING, ERROR, and CRITICAL logging levels). --log <path> Path to a verbose appending log. --proxy <proxy> Specify a proxy in the form [user:passwd@]proxy.server:port. --retries <retries> Maximum number of retries each connection should attempt (default 5 times). --timeout <sec> Set the socket timeout (default 15 seconds). --exists-action <action> Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort. --trusted-host <hostname> Mark this host as trusted, even though it does not have valid or any HTTPS. --cert <path> Path to alternate CA bundle. --client-cert <path> Path to SSL client certificate, a single file containing the private key and the certificate in PEM format. --cache-dir <dir> Store the cache data in <dir>. --no-cache-dir Disable the cache. --disable-pip-version-check Don't periodically check PyPI to determine whether a new version of pip is available for download. Implied with --no-index.
國內由于網絡原因,使用pip3或和pip安裝一些模塊會特別慢甚至無法下載,因此我們需要修改源到國內的一些鏡像地址,特別感謝國內無私奉獻的組織~
首先進入HOME路徑:
cd ~
創建.pip目錄:
mkdir .pip
創建pip.conf文件:
touch pip.conf
大家可以用自己喜歡的編輯器打開pip.conf文件,我現在使用的時v2ex的源,所以添加:
[global]
index-url = http://pypi.v2ex.com/simple
大家可以把index-url的值設置為自己實際源的地址.
至此pip3源修改成功,以后使用pip安裝模塊時都會從這個源去下載安裝,大家可以自行測試一下.
國內有如下下載源:
清華:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/
華中理工大學:http://pypi.hustunique.com/
山東理工大學:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
臨時使用:
可以在使用pip/pip3的時候加參數-i https://pypi.tuna.tsinghua.edu.cn/simple
如:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyspider
這樣就會從清華這邊的鏡像去安裝pyspider庫。
永久修改,一勞永逸:
Linux下,修改 ~/.pip/pip.conf (沒有的話就創建一個文件夾及文件。文件夾要加“.”,表示是隱藏文件夾)
內容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com
windows下,直接在user目錄中創建一個pip目錄,如:C:\Users\xx\pip,新建文件pip.ini。內容同上。
PIL(Python Imaging Library)圖像處理模塊,在python3.X已經替換為pillow模塊(文檔:http://pillow.readthedocs.org/en/latest/)。
直接使用pip3 install pillow即可安裝模塊,導入時使用from PIL import Image.
命令行如下:
$pip3 install pillow
執行過程如下:
Collecting pillow Downloading Pillow-4.3.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (3.5MB) 100% |████████████████████████████████| 3.6MB 19kB/s Collecting olefile (from pillow) Downloading olefile-0.44.zip (74kB) 100% |████████████████████████████████| 81kB 13kB/s Building wheels for collected packages: olefile Running setup.py bdist_wheel for olefile ... done Stored in directory: /Users/xsnai/Library/Caches/pip/wheels/20/58/49/cc7bd00345397059149a10b0259ef38b867935ea2ecff99a9b Successfully built olefile Installing collected packages: olefile, pillow Successfully installed olefile-0.44 pillow-4.3.0
4句代碼實現漢字識別
from PIL import Image import pytesseract text=pytesseract.image_to_string(Image.open('denggao.jpeg'),lang='chi_sim') print(text)
需要先安裝兩個包,如果沒有安裝的話。
pip3 install PIL pip3 install pytesseract
還需要下載中文語言包tesseract-ocr
更多關于Mabook安裝Python最新版本(3.6.4)、GUI開發環境、圖像處理、視頻處理環境請查看下面的相關鏈接
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。