Linux中测试深度学习模型中出现的一些Bug汇总

  1. Linux中git代码出现bug:
fatal: 无法访问 'https://github.com/JimmyChame/SADNet.git/':GnuTLS recv error (-110): The TLS connection was non-properly terminated.

解决:

git config --global --unset http.proxy
git config --global --unset https.proxy

2.在requirement.txt文件中有着类似的输出,pip安装会出现错误:

aioredis @ file:///home/conda/feedstock_root/build_artifacts/aioredis_1591809643295/work
amqp @ file:///home/conda/feedstock_root/build_artifacts/amqp_1591005859311/work

解决办法:

pip list --format=freeze > requirements.txt

安装不会报错。

你可能感兴趣的:(bug,git,github)