本篇文章主要介紹了詳解Python pygame安裝流程筆記。小編覺得蠻不錯的,現在分享給大家,也給大家做個參考。一起跟著小編過來看看吧
今天看到一個教程,是關於Python安裝pygame模組的。覺得很好,拿來分享一下。
安裝Python
額,這個小題似乎在這裡很是多餘。但為了照顧到剛學會Python的童鞋,我還是多囉嗦兩句吧。
具體如下:
我們要到Python官網。去下載我們需要的版本。我這裡下載的是windows64位元 的Python2.7 msi。安裝的過程如果不懂,選擇為預設即可。
安裝easy_install
至於這是什麼東東?我們大可不必勞心,現在只要知道它能幫我們安裝一些函式庫就可以了。具體的安裝過程也很簡單,只需要下載這個函式庫,使用python的指令來安裝即可。
安裝pip
好了,經過了前面的兩步,想必大家(尤其是剛入門的童鞋)肯定會很心煩了吧,怎麼需要裝這麼多的東西。但是咧,千萬不要灰心,因為好日子馬上就要來了。 pip就是這麼一款能解放你安裝庫的複雜勞動的一款神器。下面就一起來看看怎麼安裝pip吧。
在此之前,一定要確認你的windows系統中已經安裝好了Python和easy_install。
安裝成功的標誌:
Microsoft Windows [版本 6.1.7600] 版权所有 (c) 2009 Microsoft Corporation。保留所有权利。 C:\Users\Administrator>python Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 20:40:30) [MSC v.1500 64 bit ( AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> exit() C:\Users\Administrator>easy_install -version usage: easy_install [options] requirement_or_url ... or: easy_install --help error: option -r not recognized C:\Users\Administrator>
接下來就是把目錄切換到python的安裝目錄下的Script資料夾下,輸入
easy_install pip。當然瞭如果要想方便一些的話,可以把這個路徑配置到你的環境變數中(至於怎麼配,網上的相關教程很多也很詳細。我就不重複的造輪子了)。
驗證一下:
C:\Users\Administrator>pip -v 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. 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. --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. --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. C:\Users\Administrator>
安裝pygame
安裝pygame的前提那肯定是先得下載這個文件啊。所以我們需要下載一下。 pygame 檔下載。記得對應你的Python版本進行下載。
下載完後我們會發現它是一個.whl後綴的檔案。這就比較尷尬了。怎麼打開呢?
答案就是使用另一個工具,wheel。 wheel 本質上是一個 zip 套件格式,它使用 .whl 副檔名,用於 python 模組的安裝,它的出現是為了取代 Eggs。 wheel 也提供了一個 bdist_wheel 作為 setuptools 的擴充指令,這個指令可以用來產生 wheel 套件。 wheel一下,檢查是否安裝成功。
安裝wheel的方式這次就爽多了。因為我們已經有pip了。
pip install wheel
。搞定了。
現在回過頭來進到pygameXXXXX.whl的目錄下,wheel 檔案名稱 .好了,徹底搞定了。
驗證
C:\Users\Administrator>python Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 20:40:30) [MSC v.1500 64 bit ( AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import pygame >>>
木有報錯,這就表示咱安裝成功了。接下來就開始愉快的pygame之旅吧。
總結
整體的安裝過程是很讓人糾結的。尤其是對那些剛入門的童鞋。但是,這也是最有價值的經驗了。因為這些函式庫的安裝會讓你對Python的架構更加的熟悉。整體結構的掌握也會更加的好。
以上是Python pygame如何安裝?詳解Python pygame安裝的教學實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!