By admin, 25 十二月, 2023

https://github.com/atomicoo/FCH-TTS

We may encounter issue of fail to download cmudict. We need to solve it like this:

$ python3
>>> import nltk
>>> nltk.set_proxy('127.0.0.1:7890')
>>> nltk.downlad('cmudict')

据说这个网站也有数据库: MONLAM.AI  ,但我看不懂藏语。似乎也无法访问了。

标签

By admin, 20 十一月, 2023
# 趋动云
pip config set global.index-url https://pypi.virtaicloud.com/repository/pypi/simple

# 清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 腾讯源
pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
# 豆瓣源
pip config set global.index-url http://pypi.douban.com/simple/
# 换回默认源
pip config unset global.index-url

标签