随笔分类 - 程序bug
摘要:测试 C++11中 Alias Template 时出现出现报错 程序: #include <iostream> #include <vector> using namespace std; int main() { template <typename T> using Vec = vector<
阅读全文
摘要:conda 创建环境时报错 conda create -n -- python=3.9 问题: An HTTP error occurred when trying to retrieve this URL. 解决方法: 给Anaconda 更改镜像源 step1. 恢复默认源 conda conf
阅读全文
摘要:pip install opencv-python 时出现问题: 解决方法: 在pip后面加入-i参数,比如:-i https://pypi.tuna.tsinghua.edu.cn/simple 另外,可以将默认时间延迟增大避免超时 --default-timeout=10000 -i https
阅读全文