
python
土米A
个人对计算机方面的知识很感兴趣。。希望能在这里找到乐子~~
展开
-
python与C++ dll
一、建一个cpp的dll。项目名为PyTestDll 头文件 #pragma once #ifdef __cplusplus extern "C" { #endif int __stdcall Add(int a, int b); #ifdef __cplusplus } #endif 源文件 #include "pch.h" int __stdcall Add(int a, int b) { return a + b; } 二、python使用 # -*- coding: u原创 2021-05-07 10:33:55 · 154 阅读 · 0 评论 -
python 离线打包pip
python 2.7.8 os win 10 x64 1、列出包 ./pip.exe freeze > requirements.txt 2、根据列出的包,下载 ./pip.exe download -d C:\\Package\\whls -r .requirements.txt 3、根据列表与包安装 ./pip install --no-index --fi...原创 2018-10-19 09:52:09 · 1264 阅读 · 0 评论