摘要:
登录要使用账户名和TOKEN! 重置登录 git config --system --unset credential.helper 阅读全文
摘要:
1. File "\lib\asyncio\events.py", line 553, in add_signal_handler raise NotImplementedError 参考issue,windows不支持signal,添加代码禁用 # _LOOP.add_signal_handler 阅读全文
摘要:
paddlespeech 1. 环境配置 按照:https://github.com/PaddlePaddle/PaddleSpeech/blob/develop/docs/source/install_cn.md 问题 conda create -p 在桌面目录执行了conda create -p 阅读全文
摘要:
原conda源:查看.condarc文件 ssl_verify: true show_channel_urls: true channels: - http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/ - http://mirrors 阅读全文
摘要:
错误描述: root@cef54a23d0c1:/home/xxx/LightSpeech# conda activate lightspeech CommandNotFoundError: Your shell has not been properly configured to use 'co 阅读全文
摘要:
尝试把conda下的移过去,但没有权限,操作失败 方法 参考 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/your/path/to/conda/env/lib export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/project/wa 阅读全文
摘要:
How to get indices of top-K values from a numpy array np.argpartition(probs,-5)[-5:] 阅读全文
摘要:
使用torchaudio时显示没有soundfile 直接pip install 安装失败,使用conda install -c conda-forge pysoundfile安装成功 报错: 搞了半天pip uninstall soundfile 再重新安装就好了 记得重启环境! 阅读全文
摘要:
1. gnutls_handshake() failed: The TLS connection was non-properly terminated. 重置代理 完美解决 git config --global --unset https.https://github.com.proxy git 阅读全文
摘要:
ref ref2 commit节点回退 git reset --soft HEAD~1 回退一个commit节点并保存编辑器内容 git reset --hard HEAD~1 撤销第一次提交并彻底删除相关更改 如果此时commit是initial commit,会报错 fatal: ambiguo 阅读全文