詳解Python pygame安裝過程筆記
今天看到一個教程,是關于Python安裝pygame模塊的。覺得很好,拿來分享一下。
安裝Python
額,這個小題貌似在這里很是多余啊。但是為了照顧到剛剛學習Python的童鞋,我還是多啰嗦兩句吧。
具體如下:
我們要到Python官網(wǎng)。去下載我們需要的版本。我這里下載的是windows64位 的Python2.7 msi。安裝的過程如果不懂,選擇為默認即可。
安裝easy_install
至于這是個什么東東?我們大可不必勞心,現(xiàn)在只需要知道它能幫助我們安裝一些庫就可以了。具體的安裝過程也很簡單,只需要下載這個庫,使用python的命令進行安裝即可。
安裝pip
好了,經(jīng)過了前面的兩步,想必大家(尤其是剛?cè)腴T的童鞋)肯定會很心煩了吧,怎么需要裝這么多的東西。但是咧,千萬不要灰心,因為好日子馬上就要來了。pip就是這么一款能解放你安裝庫的復雜勞動的一款神器。下面就一起來看一看怎么安裝pip吧。
在此之前,一定要確認你的windows系統(tǒng)中已經(jīng)安裝好了Python和easy_install。
安裝成功的標志:
Microsoft Windows [版本 6.1.7600] 版權(quán)所有 (c) 2009 Microsoft Corporation。保留所有權(quán)利。 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。當然了如果要想方便一些的話,可以把這個路徑配置到你的環(huán)境變量中(至于怎么配,網(wǎng)上的相關教程很多也很詳細。我就不重復的造輪子了)。
驗證一下:
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版本進行下載哦。
下載完之后我們會發(fā)現(xiàn)它是一個.whl后綴的文件。這就比較尷尬了。怎么打開呢?
答案就是使用另一款工具,wheel。wheel 本質(zhì)上是一個 zip 包格式,它使用 .whl 擴展名,用于 python 模塊的安裝,它的出現(xiàn)是為了替代 Eggs。wheel 還提供了一個 bdist_wheel 作為 setuptools 的擴展命令,這個命令可以用來生成 wheel 包。wheel一下,檢查是否安裝成功。
安裝wheel的方式這次就爽多了。因為我們已經(jīng)有了pip。
pip install wheel。搞定了。
現(xiàn)在回過頭來進到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之旅吧。
總結(jié)
整體的安裝過程是很讓人糾結(jié)的。尤其是對那些剛?cè)腴T的童鞋。但是,這也是最有價值的經(jīng)驗了。因為這些庫的安裝會讓你對Python的架構(gòu)更加的熟悉。整體結(jié)構(gòu)的把握也會更加的好。
所以,靜下心來。一步一步的,進行操作就是了。相信這會對你Python有很大的幫助的。也希望大家多多支持腳本之家。
相關文章
PyCharm?設置數(shù)據(jù)庫,查詢數(shù)據(jù)庫語句方式
這篇文章主要介紹了PyCharm?設置數(shù)據(jù)庫,查詢數(shù)據(jù)庫語句方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-07-07
極簡Python庫CherryPy構(gòu)建高性能Web應用實例探索
今天為大家介紹的是 CherryPy,它是一個極簡、穩(wěn)定且功能強大的Web框架,可以幫助開發(fā)者快速構(gòu)建高性能的 Web 應用程序,使用 CherryPy,你可以輕松地創(chuàng)建RESTful API、靜態(tài)網(wǎng)站、異步任務和 WebSocket 等應用2024-01-01
pycharm2022.2遠程連接服務器調(diào)試代碼實現(xiàn)
本文主要介紹了pycharm2022.2遠程連接服務器調(diào)試代碼實現(xiàn),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2023-02-02

