问题
进阶媛小吴
规则简单易懂,粗暴却完美!
https://github.com/wuliwuxin
展开
-
【问题】ImportError: libGL.so.1: cannot open shared object file: No such file or directory
通常需要安装缺失的依赖项 libGL。ImportError: libGL.so.1: 无法打开共享对象文件:没有这样的文件或目录。原创 2024-09-03 09:06:05 · 561 阅读 · 0 评论 -
【问题】URL时HTTPS报错误
由于 Python 环境没有正确配置来识别和验证 SSL 证书。这种情况常见于尝试使用 urllib 访问 HTTPS 网站。全局取消 SSL 证书验证可能不太安全,但是能快速解决问题。介意的小伙伴,误用此方法。原创 2024-01-13 12:46:24 · 576 阅读 · 0 评论 -
Mac M1下Clion编译错误:Undefined symbols for architecture x86_64和ld: symbol(s) not found for architecture
CMakeLists.txt,注意cmake版本与你安装的一致。去掉了C编译环境和C++编译环境。原创 2023-07-27 20:39:25 · 1476 阅读 · 0 评论 -
Ubuntu 20.04 下g++用不了,但是提示已经安装
g++已经是最新版本了,但是用g++ -v查看又提示需要安装 g++。原创 2023-06-29 12:55:25 · 2465 阅读 · 2 评论 -
ValueError: setting an array element with a sequence. The requested array has an inhomogeneous shape
numpy版本为1.24.3。原创 2023-06-08 11:05:30 · 6864 阅读 · 8 评论 -
5折实验结果画箱线图
5折实验结果画箱线图原创 2022-11-05 11:01:24 · 339 阅读 · 0 评论 -
vanilla是什么意思
vanilla是什么意思原创 2022-10-20 09:29:18 · 1441 阅读 · 0 评论 -
Ubuntu系统无法打开github
终端输入:sudo gedit /etc/hosts打开host文件,然后输入密码添加203.208.39.99 github.com140.82.112.3 github.com199.232.69.194 github.global.ssl.fastly.net保存文件后,关闭hosts文件,输入:/etc/init.d/networking restart即可...原创 2022-05-31 17:28:24 · 1966 阅读 · 2 评论 -
ERROR: No matching distribution found for web问题
使用python3安装 web包出错要为 Python 3 安装最新的 web.py,请运行pip3 install web.py最新0.62版本支持 Python >= 3.5。版本0.51是支持 Python 2.7 的最后一个版本。测试:import weburls = ( '/', 'index')class index: def GET(self): return "Hello, world!"if __name__ == "__原创 2022-05-16 21:22:46 · 3802 阅读 · 0 评论 -
CIFAR原始数据转为图片
官方给出的python3解压数据文件函数,返回数据字典。转载 2022-02-17 19:36:17 · 231 阅读 · 0 评论 -
pycharm安装的docx出错 No module named ‘exceptions
文本分类时,导入了docx包后提示以下错误最初以为是没有exceptions这个包,去安装了exceptions,提示错误好吧,我又去更新了pip,然而还是不可以这是怎么回事呢?原来是docx工具包不对,我又重新安装了python-docxOK,成功运行!...原创 2021-11-03 10:32:16 · 2541 阅读 · 1 评论 -
python的print(f‘)
python的print字符串前面加f表示格式化字符串,加f后可以在字符串里面使用用花括号括起来的变量和表达式,如果字符串里面没有表达式,那么前面加不加f输出应该都一样格式化的字符串文字前缀为’f’和接受的格式字符串相似str.format()。w = 2print('%.2f' %w)print(f'w = {w:.2f}')...原创 2021-06-17 08:40:31 · 37667 阅读 · 2 评论 -
Mac连接GitHub创建SSH提示:Key is invalid. You must supply a key in OpenSSH public key format1-06-16
Mac连接GitHub创建SSH提示:Key is invalid. You must supply a key in OpenSSH public key format1-06-16通过vi /.ssh/id_rsa.pu复制id_rsa.pu文件里的内容到key原因:复制的密钥密钥无效,粘贴的格式不对方法cat /Users/xiaowu/.ssh/id_rsa.pub #xiaowu需替换成自己的用户名复制内容,粘贴到key中,完成...原创 2021-06-16 09:46:55 · 780 阅读 · 0 评论 -
pycharm创建文件时自动注释相关内容
pycharm创建文件时自动注释#-*- codeing = utf-8 -*-#@Time : ${DATE} ${TIME}#@Author : wuxin#@File : ${NAME}.py#@Software : ${PRODUCT_NAME}原创 2020-05-23 19:23:03 · 271 阅读 · 0 评论 -
AttributeError: module 'scipy.misc' has no attribute 'toimage'
AttributeError: module ‘scipy.misc’ has no attribute ‘toimage’问题:原因:其实这是版本问题,查了Scipy.rog,在Scipy1.3.0那里的解释是functions from scipy.misc(bytescale, fromimage, imfilter, imread, imresize, imrotate, ims...原创 2020-04-20 18:21:37 · 527 阅读 · 0 评论 -
Dev-C++软件Debug导致软件崩溃问题
Dev-C++软件Debug导致软件崩溃问题选择Tools选择Compiler Options选择OK即可!原创 2020-03-02 16:09:44 · 194 阅读 · 0 评论 -
git问题Could not open a connection to your authentication agent.
问题:ssh-add ~/.ssh/id_rsaCould not open a connection to your authentication agent.解决:执行:eval `ssh-agent -s`然后再次执行ssh-add ~/.ssh/id_rsa就可以顺利执行了...原创 2020-02-28 12:16:01 · 572 阅读 · 0 评论 -
git问题error: failed to push some refs
问题:! [rejected] master -> master (fetch first)error: failed to push some refs to ‘https://github.com/wuliwuxin/SparkDmo.git’hint: Updates were rejected because the remote contains work th...原创 2020-02-28 11:49:18 · 225 阅读 · 0 评论 -
解决git@github.com: Permission denied (publickey). Could not read from remote repository.
解决git@github.com: Permission denied (publickey). Could not read from remote repository.提示:Hi xxx! You’ve successfully authenticated, but GitHub does not provide shell access. 问题原因分析一般是以下两种原因:客户端与...原创 2020-02-27 17:47:43 · 737 阅读 · 0 评论