上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 34 下一页
摘要: 转载自腾讯云:https://cloud.tencent.com/developer/article/1451539 报错原因,h5文件不完整,不要相信github和网络!!! 使用keras在加载网络网络参数的时候出现这个问题 File "h5py\h5f.pyx", line 78, in h5 阅读全文
posted @ 2020-12-25 16:13 pythoner_wl 阅读(6455) 评论(0) 推荐(0) 编辑
摘要: 算法部署:nginx + uwsgi + flask 重复初始化 CUDA 报错:uwsgi lazy-apps参数为true,即可解决 <lazy-apps>true</lazy-apps> 多个线程打开同一个文件,肯定不行,所以,,, import random import time t = 阅读全文
posted @ 2020-12-23 14:41 pythoner_wl 阅读(109) 评论(0) 推荐(0) 编辑
摘要: Ubuntu删除应用 dpkg --list # 查看已安装应用 apt-get --purge remove 包名 # 卸用 阅读全文
posted @ 2020-12-23 14:05 pythoner_wl 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 更新软连接 删除当前软连接 rm python 设置软连接 ln -s 目标source python 结果: python → 目标source 阅读全文
posted @ 2020-12-23 14:02 pythoner_wl 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 没有通过nginx访问接口的问题,配置好nginx即可。 docker部署 location /api/v1/carresult/ { include uwsgi_params; uwsgi_pass 192.168.3.174:5002; } 阅读全文
posted @ 2020-12-23 13:23 pythoner_wl 阅读(385) 评论(0) 推荐(0) 编辑
摘要: uwsgi安装及问题解决 不管在系统环境还是docker内,系统会有自带的uwsgi,显然不能用系统的uwsgi,因为默认python解释器永远是python2.7 部署python项目,安装uwsgi一定要用pip安装,而不是apt-get安装。 正常安装 pip3 install uwsgi 遇 阅读全文
posted @ 2020-12-23 12:14 pythoner_wl 阅读(1215) 评论(0) 推荐(0) 编辑
摘要: import os # 获取当前目录 print(os.getcwd()) print(os.path.abspath(os.path.dirname(__file__))) print(os.path.abspath('.')) # 获取当前文件 print(os.path.abspath(__f 阅读全文
posted @ 2020-11-25 18:12 pythoner_wl 阅读(522) 评论(0) 推荐(0) 编辑
摘要: flask run -h 0.0.0.0 -p 5000 这样公网才能访问!!! 阅读全文
posted @ 2020-11-25 14:54 pythoner_wl 阅读(1025) 评论(0) 推荐(1) 编辑
摘要: 容器生成镜像并传输到其他服务器 容器——》镜像——》打包——》传输——》解包为镜像 1、从容器创建一个镜像 使用到的命令: docker commit :从容器创建一个新的镜像 docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]] OPTIONS说 阅读全文
posted @ 2020-11-19 18:37 pythoner_wl 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 3389端口 3389端口是Windows 2000(2003) Server远程桌面的服务端口,可以通过这个端口,用"远程桌面"等连接工具来连接到远程的服务器,如果连接上了,输入系统管理员的用户名和密码后,将变得可以像操作本机一样操作远程的电脑,因此远程服务器一般都将这个端口修改数值或者关闭。 中 阅读全文
posted @ 2020-11-19 18:06 pythoner_wl 阅读(3214) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 34 下一页