程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

【Python】Linux下使用pip3進行Pygame的安裝

編輯:Python

pip3:

pip是一個以Python計算機程序語言寫成的軟件包管理系統
他可以安裝和管理軟件包,另外不少的軟件包也可以在“Python軟件包索引”(Python Package Index,簡稱PyPI)中找到。
pip3就是Python3的pip

安裝pip3:

# sudo apt install python3-pip

pygame:

pygame是基於python的游戲開發套件,一個第三方模塊。

安裝&驗證pygame:

# sudo pip3 install pygame
安裝途中可能會提示類似如下代碼:
The directory '/home/shame/.cache/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.
The directory '/home/shame/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
直接忽略,如果不動了,可以按一下回車試一下,以下是安裝過程:
(出現Successfully......提示後則安裝成功)

然後使用
# python3 -m pygame.examplesap.aliens
進行驗證,出現Hello.......表示OK!

導入&使用pygame:

# ipython3
# import pygame
提示如下版本信息後,即可:
pygame 1.9.6
Hello from the pygame community. https://www.pygame.org/contribute.html


OK!剩下的使用就與本文章無關了,有時間再為大家更新新的篇章!Bye~~


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved