11 2022 档案

css 左右而已,左边根据自动伸展,右边填满剩余空间
摘要:<div class="container"> <div class="left"></div> <div class="right"></div> </div> .container { display: flex; } .left { flex: 0 0 auto; height: 100px; 阅读全文

posted @ 2022-11-30 16:15 空明流光 阅读(163) 评论(0) 推荐(0) 编辑

Cent 制作离线rpm包(包括所有依赖项)
摘要:首先yum上能找到这个包,它是以本机现有环境为基础生成的依赖包。如果已经安装完成,这个就做不成了,所以最好用虚拟机先试一下,确保可以安装成功,再回滚,再制作。 # 安装yum-utils $ yum -y install yum-utils # 下载 ansible 依赖包 $ yumdownloa 阅读全文

posted @ 2022-11-27 13:28 空明流光 阅读(35) 评论(0) 推荐(0) 编辑

Cent 7 安装 tilde 文本编辑器
摘要:cd /etc/yum.repos.d wget http://download.opensuse.org/repositories/home:/gphalkes:/tilde/CentOS_CentOS-7/home:gphalkes:tilde.repo mv home:gphalkes:til 阅读全文

posted @ 2022-11-27 13:09 空明流光 阅读(23) 评论(0) 推荐(0) 编辑

Python基于pip实现离线打包
摘要:转载自 https://www.zhangshengrong.com/p/x7XRM7byNz/ 新公司是内网环境,无法使用pip安装第三方资源库,在网上搜下,可以直接使用pip打包本机所安装的第三方资源库,打包成whl文件 一 进入cmd命令行 1 打包单个模块 pip download pyte 阅读全文

posted @ 2022-11-27 11:13 空明流光 阅读(1675) 评论(0) 推荐(0) 编辑

ubuntu 使用入门
摘要:我使用的版本是 22.04.1 LTS,经验与大家分享: 0. 此版本的Ubuntu默认安装了python3.10.6,启动命令是python3,但没有安装 pip,安装pip命令: sudo apt install python3-pip 但默认安装的pip似乎是坏的,安装任何软件都不成功,也无法 阅读全文

posted @ 2022-11-24 15:33 空明流光 阅读(586) 评论(0) 推荐(0) 编辑

c++ 调用 python 2.7 / 3.10
摘要:本来想调用 python 3.10 的,但一直安装不成功,先记录一下 python 2.7。 先上代码: #include <iostream> using namespace std; #include "Python.h" int main(int argc, char *argv[]) { i 阅读全文

posted @ 2022-11-23 10:39 空明流光 阅读(150) 评论(0) 推荐(0) 编辑

c++ 输入输出重定向
摘要:std中的方法提供了重定向功能,像用户的输入输出都可以重定向到变量中。 #include <iostream> #include <filesystem> #include <stdio.h> using namespace std; #include <sstream>std::stringstr 阅读全文

posted @ 2022-11-21 15:18 空明流光 阅读(276) 评论(0) 推荐(0) 编辑

c++ 调用 python 数据类型对照表
摘要:Parsing arguments and building values These functions are useful when creating your own extensions functions and methods. Additional information and e 阅读全文

posted @ 2022-11-18 17:58 空明流光 阅读(138) 评论(0) 推荐(0) 编辑

c++ 调用 python 备忘
摘要:PyBytesObject 值的获取: PyObject *pFuncSetCredentialResult = PyObject_CallObject(pFuncSetCredential, pFuncSetCredentialArgs); PyBytesObject* pBytes = (PyB 阅读全文

posted @ 2022-11-18 16:19 空明流光 阅读(121) 评论(0) 推荐(0) 编辑

Hyper-V 磁盘收缩命令
摘要:Optimize-VHD 优化了一个或多个虚拟硬盘文件的空间分配。这个操作可以回收未使用的块,以及重新排列块,使其更有效地打包,从而减少虚拟硬盘文件的大小。 经过测试,该工具效果很好,所以将使用方法记录下来供不时之需。 方法 首先将你的的虚拟磁盘在宿主机的 磁盘管理实用程序 内用 只读 模式挂载(非 阅读全文

posted @ 2022-11-17 13:55 空明流光 阅读(1335) 评论(0) 推荐(0) 编辑

Cython directive 'language_level' not set, using 2 for now (Py2)
摘要:如果你期望编译的版本不是python2,那就指定自己要用哪个版本编译,或者在每个要编译的版本 .py 文件顶上添加一行指定cython版本,但如果有成千上成个 .py 或 .pyx 文件,就不好处理了,在 setup.py 中添加: cythonize(module_item,compiler_di 阅读全文

posted @ 2022-11-14 11:50 空明流光 阅读(1405) 评论(0) 推荐(0) 编辑

python 常见问题备忘
摘要:1. 查看项目依赖项并输出到文件命令 pip freeze > requirements.txt 自动为当前项目安装依赖项:pip install pipreqs 根据 requirements.txt 安装依赖项:pip --default-timeout=50000 install -r C:\ 阅读全文

posted @ 2022-11-10 17:15 空明流光 阅读(44) 评论(0) 推荐(0) 编辑

python 解构生成的可执行文件(如main.exe)
摘要:python打包成的 main.exe 中包含了哪些东西,可以通过以下命令解压到当前目录下一个名为 main.exe_extracted 的文件夹中: python pyinstxtractor.py mainx.exe 文件 pyinstxtractor.py 的下载地址:https://img2 阅读全文

posted @ 2022-11-10 14:16 空明流光 阅读(118) 评论(0) 推荐(0) 编辑

python 代码打包成可执行文件 pyinstaller
摘要:1.打包为一个目录 pyinstaller -D xxx.py 2.打包为一个文件 pyinstaller -F xxx.py 打包过程中会生成一个xxx.spec文件,如果有自定义的引用,可以修改这个文件,然后执行 pyinstaller xxx.spec xxx.spec 文件结构如下: # - 阅读全文

posted @ 2022-11-10 14:10 空明流光 阅读(219) 评论(0) 推荐(0) 编辑

FileNotFoundError: [WinError 3] 系统找不到指定的路径 general.pyc
摘要:在项目路径下搜索 *.pyc,找到类似文件 general.cpython-310.pyc,创建目标目录,复制到目标目录下,重命名为 general.pyc 阅读全文

posted @ 2022-11-04 17:42 空明流光 阅读(381) 评论(0) 推荐(0) 编辑

python 打包后运行提示 ModuleNotFoundError: No module named 'xxx'
摘要:毫无疑问,是打的包有问题。 目前见到的原因有三: 1. pycharm 开发环境的引用的包版本和外面的环境引用的包版本不一致。 处理方式:想办法让两个版本一致。 相关命令:pip uninstall xxx,pip install xxx=1.2.1,pip show xxx 2. pyinstal 阅读全文

posted @ 2022-11-04 16:02 空明流光 阅读(2223) 评论(0) 推荐(0) 编辑

python 创建 动态链接库 到 c++ 调用
摘要:1. 如果想要在 c++ 中 debug 模式调试模式运行,windows下的话,需要安装时安装 debug 库 2. 安装 cython 3. 编写 pyx 文件,例如 demo.pyx: # distutils: language = c++cdef public int add(int a,i 阅读全文

posted @ 2022-11-03 15:37 空明流光 阅读(1043) 评论(0) 推荐(0) 编辑

导航