Skip to content

Commit

Permalink
Merge pull request #73 from SK-415/dev
Browse files Browse the repository at this point in the history
release v1.3.0
  • Loading branch information
SK-415 authored Jun 27, 2021
2 parents 57cc920 + 82f4f4f commit 3a2bfce
Show file tree
Hide file tree
Showing 51 changed files with 1,916 additions and 1,344 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ sk_bot/
_sk_bot/
out/
dist/
_demo/

.env
.env.dev
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ logo 画师:[@秦无](https://space.bilibili.com/4668826 )
[![VERSION](https://img.shields.io/pypi/v/haruka-bot)](https://haruka-bot.live/about/CHANGELOG.html)
[![time tracker](https://wakatime.com/badge/github/SK-415/HarukaBot.svg )](https://wakatime.com/badge/github/SK-415/HarukaBot)
[![qq group](https://img.shields.io/badge/QQ%E7%BE%A4-629574472-orange )](https://jq.qq.com/?_wv=1027&k=sHPbCRAd)
[![docs](https://img.shields.io/badge/%E6%96%87%E6%A1%A3-%E7%82%B9%E5%87%BB%E6%9F%A5%E7%9C%8B-green)](https://haruka-bot.live/)
[![docs](https://img.shields.io/badge/%E6%96%87%E6%A1%A3-%E7%82%B9%E5%87%BB%E6%9F%A5%E7%9C%8B-green)](https://haruka-bot.sk415.icu)

## 简介

Expand Down
4 changes: 1 addition & 3 deletions bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
driver.register_adapter('cqhttp', Bot)
app = nonebot.get_asgi()

nonebot.load_builtin_plugins()
nonebot.load_plugin('nonebot_plugin_apscheduler')
nonebot.load_plugins("src/plugins")

# Modify some config / config depends on loaded configs
Expand All @@ -30,4 +28,4 @@


if __name__ == "__main__":
nonebot.run(app="bot:app", reload_dirs="src")
nonebot.run(app="bot:app")
84 changes: 84 additions & 0 deletions docs/pip/pip.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# PIP(Python包管理工具)是什么
pip 是一个现代的,通用的python包管理工具。它提供了对Python包的查找、下载、安装、卸载等功能,是最常用的Python包管理工具之一。
pip自3.4Python 3和2.7.9Python 2 版本以来一直包含在Python安装程序中。

如果你足够细心,你将会在安装python是看到以下选项,我们以window 10 操作系统为例。

![python install](pthoninstall.png)

## 我如何知道我是否有安装pip?
这一点也不困惑,如果你是上述版本之上的,你就有可能安装了pip。
你只需要打开PowerShell 输入:

> 提示:这里以windows 操作系统为例,如果你是其他操作系统,请尝试打开终端。打开powershell的方法请参照 [这里](https://jingyan.baidu.com/article/b907e62769217346e7891c8c.html)
```
pip -V
```
> **注意:** 这里的 **-V** 必须要大写。
你就能看到你的pip版本、位置,以及你的Python版本:
```
> pip 21.0.1 from c:\python\lib\site-packages\pip (python 3.9)
```
当然,如果没有正确返回,说明你的pip**没有安装**,或者**配置不正确**

如果出现错误,别灰心,让我们开始安装pip。
## 我该如何安装pip呢?
如果你还未安装,则可以使用以下方法来安装:
在终端或者PowerShall中**连续执行**以下命令:

```
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
```
这会需要一点时间,如果不问题,你将会看到这样的信息:
```
....
Successfully installed pip-21.0.1
```
当然,安装失败也不要灰心,请检查**网络连接**与否安装python。

## 如何加快pip下载东西的速度?
pip安装软件前需要下载,下载东西的速度取决与你的带宽与服务器的链接质量,如果你位于国内,使用pip的国外源是非常不明智的选择,我们就要将它替换到国内源以求得更加流畅的使用体验。
如果你是使用windows操作系统,请你按照以下步骤操作:
**打开:** 此电脑> C盘 > 用户 > (你的用户名对应的文件夹)
新建一个文本文档,写入:
```
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.c
```
保存后退出,将文件重命名为 **pip.ini**,这是操作系统会提示,请选择**确认**
> **注意:** **.ini**是扩展名,如果你不知道如何修改Windows操作系统下文件的扩展名,请查看[这里](https://www.baidu.com/s?wd=%E4%BF%AE%E6%94%B9%E6%96%87%E4%BB%B6%E6%89%A9%E5%B1%95%E5%90%8D)
完成上述操作步骤,你就完成了pip换源的所有操作。

## 如何使用pip呢?
pip的使用非常简单!你仅需在终端或者PowerShell中输入:
```
pip
```
你会惊奇的发现pip会告诉你如何正确的使用它。
我们来学习一些基础的pip命令。
### 安装
我们可以使用这个命令完成安装:
```
pip install 你要安装的包 # 最新版本
pip install 你要安装的包==1.0.4 # 指定版本
pip install '你要安装的包>=1.0.4' # 最小版本
```
> 进阶:这样可以安装多个包:
pip install 你要安装的包1 你要安装的包2 ......

### 卸载
同样的,使用下列命令可以完成删除:
```
pip uninstall 你要卸载的包
```

## 探索更多...
上面仅介绍了一部分如何使用pip的方法,pip还有更多的功能,你可以在[这里](https://www.runoob.com/w3cnote/python-pip-install-usage.html)学到更多。


Binary file added docs/pip/pythoninstall.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/usage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
示例版本:v1.2.3
<Messenger :messages="[
{ position: 'right', msg: '<a>@HarukaBot</a> 版本信息' },
{ position: 'left', msg: '当前 HarukaBot 版本:1.2.3\n\n使用中遇到问题欢迎加群反馈,\n群号:629574472\n\n常见问题:https://www.haruka-bot.live/usage/faq.html' }
{ position: 'left', msg: '当前 HarukaBot 版本:1.2.3\n\n使用中遇到问题欢迎加群反馈,\n群号:629574472\n\n常见问题:https://haruka-bot.live/usage/faq.html' }
]"/>
:::
</ClientOnly>
Loading

1 comment on commit 3a2bfce

@vercel
Copy link

@vercel vercel bot commented on 3a2bfce Jun 27, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.