Skip to content

Commit

Permalink
docs: added solutions to installation failure
Browse files Browse the repository at this point in the history
  • Loading branch information
shengchenyang committed Dec 16, 2023
1 parent dcdc959 commit 5fbad78
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/intro/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,26 @@ pip install ayugespidertools[all]
pip install 'ayugespidertools-x.x.x-py3-none-any.whl[database]' -i https://mirrors.aliyun.com/pypi/simple/
```

- 无法查找到 `ayugespidertools`

这也是国内源的完整度问题,推荐优先配置为阿里云源或者清华大学源即可,若还不行请切换到官方源。

报错详情如下:

```shell
ERROR: Could not find a version that satisfies the requirement ayugespidertools (from versions: none)
ERROR: No matching distribution found for ayugespidertools
```

解决方法如下:

```shell
pip install ayugespidertools -i https://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
# 或者使用官方源:
pip install ayugespidertools -i https://pypi.org/simple
```


若遇到其它的各种问题,请提 [issues](https://github.com/shengchenyang/AyugeSpiderTools/issues/new/choose)

### 值得知道的事情
Expand Down

0 comments on commit 5fbad78

Please sign in to comment.