-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ff15dd
commit 757ffab
Showing
6 changed files
with
159 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
# 关于作者 | ||
|
||
``` | ||
学生党, 主要研究方向是计算机视觉, 顺便对信息安全感兴趣。 | ||
|
||
我的个人微信公众号是: Charles_pikachu (欢迎搜索关注,或者搜"Charles的皮卡丘") | ||
|
||
我的Github账号是: https://github.com/CharlesPikachu | ||
我的Github账号是: [https://github.com/CharlesPikachu](https://github.com/CharlesPikachu) ((欢迎搜索关注)) | ||
|
||
我的知乎账号是: https://www.zhihu.com/people/charles_pikachu | ||
我的知乎账号是: [https://www.zhihu.com/people/charles_pikachu](https://www.zhihu.com/people/charles_pikachu) (欢迎搜索关注) | ||
|
||
我的B站账号是: https://space.bilibili.com/406756145 | ||
我的B站账号是: [https://space.bilibili.com/406756145](https://space.bilibili.com/406756145) (欢迎搜索关注) | ||
|
||
个人邮箱: [email protected] | ||
``` | ||
个人邮箱: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
# 开发日志 | ||
|
||
- 2022-01-08: 完成v0.1.0, 集成了27款小游戏 | ||
#### 2022-01-08 | ||
|
||
- 版本号: v0.1.0, | ||
- 更新内容: 集成了27款小游戏。 | ||
|
||
#### 2022-03-21 | ||
|
||
- 版本号: v0.1.1, | ||
- 更新内容: 集成了半成品魔塔小游戏, 修复了Linux下运行存在的字体导入BUG。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,57 @@ | ||
# 安装CPGames | ||
|
||
|
||
## 环境配置 | ||
#### 环境配置 | ||
|
||
- 操作系统: Linux or macOS or Windows | ||
- Python版本: Python3.6+ | ||
|
||
|
||
## Whl文件安装(推荐) | ||
#### Whl文件安装(推荐) | ||
|
||
在终端运行如下命令即可(请保证python在环境变量中): | ||
|
||
```sh | ||
wget https://github.com/CharlesPikachu/Games/releases/download/v0.1.0/cpgames-0.1.0-py3-none-any.whl | ||
pip install cpgames-0.1.0-py3-none-any.whl | ||
wget https://github.com/CharlesPikachu/Games/releases/download/v0.1.1/cpgames-0.1.1-py3-none-any.whl | ||
pip install cpgames-0.1.1-py3-none-any.whl | ||
``` | ||
|
||
|
||
## PIP安装(推荐) | ||
#### PIP安装(推荐) | ||
|
||
在终端运行如下命令即可(请保证python在环境变量中): | ||
|
||
```sh | ||
pip install cpgames --upgrade | ||
``` | ||
|
||
|
||
## 源代码安装 | ||
#### 源代码安装 | ||
|
||
**1.在线安装** | ||
|
||
#### 在线安装 | ||
运行如下命令即可在线安装: | ||
|
||
```sh | ||
pip install git+https://github.com/CharlesPikachu/Games.git@master | ||
``` | ||
|
||
#### 离线安装 | ||
**2.离线安装** | ||
|
||
利用如下命令下载Games源代码到本地: | ||
|
||
```sh | ||
git clone https://github.com/CharlesPikachu/Games.git | ||
``` | ||
|
||
接着, 切到Games目录下: | ||
|
||
```sh | ||
cd Games | ||
``` | ||
|
||
最后运行如下命令进行安装: | ||
|
||
```sh | ||
python setup.py install | ||
``` |
Oops, something went wrong.