怎么安装python

怎么安装python,第1张

python安装教程具体如下:

1.确定电脑的系统类型。在安装python之前,你要先确定一下你的电脑的系统类型及详细配置,具体方法如下:点击桌面上的快捷图标“此电脑”,然后右击“属性”,在设备规格下仔细查看电脑的“系统类型”。

2.进入python官网(http://www.python.org)。你可以直接在浏览器里输入python官网(http://www.python.org)的地址,也可以亮或直接在百度或其他搜索引擎里输入“python官衫键友网”,如下图1-2所示。同样可以快速进入python官网。如下图1-3所示,由于此台电脑是64位的Windows10 *** 作系统,所以点击“Downloads”后选择相应的python版本安装即可。

3.选择相应的python版本,下载python。根据此时这台电脑的系统类型(64位的Windows10 *** 作系统),我们选择相应的python版本,直接双击python解释器文或槐件进行下载即可。

4.此时,直接双击python解释器文件,即可开始安装python。

嵌入

与python的扩展相对,嵌入是把Python解释器包装到C的派脊程序中。这样做可以给大型的,单一的,要求严格的,私有的并且(或者)极其重要的应用程序内嵌Python解释器的能力。一州升旦内嵌了Python,世界完全不一样了。

C调用python中的函数

hw.py:

#coding=utf8

def hw_hs(canshu):

return canshu

if __name__ == "__main__":

ccss = "I am hw"

print hw_hs(ccss)

helloWorld.py:

#coding=utf8

import hw

def hello():

ccss = "I am helloWorld"

return hw.hw_hs(ccss)

if __name__ == "__main__":

print hello()

testcpypy.c:

//#include "testcpypy.h"

#include <Python.h>

#include <stdio.h>

#include <stdlib.h>

int main()

{

//初始化Python

Py_Initialize()

if (!Py_IsInitialized()) {

printf("Py_Initialize")

getchar()

return -1

}

//执行python语句

PyRun_SimpleString("import sys")

PyRun_SimpleString("sys.path.append('./')")

PyObject *pModule = NULL

PyObject *pFunc = NULL

PyObject *reslt =NULL

//载入python模块

if(!(pModule = PyImport_ImportModule("helloWorld"))) {

printf("PyImport_ImportModule")

getchar()

return -1

}

//查找函数

pFunc = PyObject_GetAttrString(pModule, "hello")

if ( !pFunc || !PyCallable_Check(pFunc) )

{

printf("can't find function [hello]")

getchar()

return -1

}

//调用python中的函数

reslt = (PyObject*)PyEval_CallObject(pFunc, NULL)

//printf("function return value : %d\r\n", PyInt_AsLong(reslt))

//将python返回的对象转换为C的字符串

char *resltc=NULL

int res

res = PyArg_Parse(reslt, "s", &resltc)

if (!res) {

printf("PyArg_Parse")

getchar()

return -1

}

printf("resltc is %s", resltc)

getchar()

//释放内存

Py_DECREF(reslt)

Py_DECREF(pFunc)

Py_DECREF(pModule)

//关闭python

Py_Finalize()

return 0

}

编译:

gcc -o testcpypy testcpypy.c -IC:\Python27\include -LC:\Python27\libs -lpython27---C:\Python27为python安装目录

或:

gcc -c testcpypy.c -IC:\Python27\include

gcc -o testcpypy.exe testcpypy.o -LC:\Python27\libs -lpython27

执行结果:

带参数的情况册羡老:

#include "callpydll.h"

#include "Python.h"

#include <stdio.h>

#include <stdlib.h>

#include <string.h>

#include <stdarg.h>

int callhello(char *instr, char *outstr)

{

PyObject *pModule = NULL

PyObject *pFunc = NULL

PyObject *reslt = NULL

PyObject *pParm = NULL

char *resltc = NULL

int resltn

int res

char *helloWorld = "TestIM_ProtocBuf"

char *im_account = "aaaa"

char *auth_code = "aaaa"

char *im_uid = "aaaa"

char *proxy_topic = ""

//初始化Python

Py_Initialize()

if (!Py_IsInitialized()) {

printf("Py_Initialize")

getchar()

return -1

}

//执行python语句

PyRun_SimpleString("import sys")

PyRun_SimpleString("sys.path.append('./')")

//载入python模块

if(!(pModule = PyImport_ImportModule(helloWorld))) {

printf("PyImport_ImportModule")

getchar()

return -2

}

//查找函数

pFunc = PyObject_GetAttrString(pModule, "login_proxy_body_serialize")

if ( !pFunc || !PyCallable_Check(pFunc) )

{

printf("can't find function [hello]")

getchar()

return -3

}

//参数转换C -->python, 参数必须是元组(一个参数也是,否则会失败!!!坑啊)

pParm = Py_BuildValue("(ssss)", im_account, auth_code, im_uid, proxy_topic)

//调用python中的函数

reslt = (PyObject*)PyEval_CallObject(pFunc, pParm)

//将python返回的对象转换为C的字符串

res = PyArg_ParseTuple(reslt, "si", &resltc, &resltn)

if (!res) {

printf("PyArg_Parse")

getchar()

return -4

}

printf("resltn is %d", resltn)

memcpy(outstr, resltc, strlen(resltc)+1)

//释放内存

Py_DECREF(reslt)

Py_DECREF(pFunc)

Py_DECREF(pModule)

Py_DECREF(pParm)

//关闭python

Py_Finalize()

return 0

}

int main() {

int i

char *dais = "iammain"

char res[10240]

memset(res,'\0',sizeof(res))

i = callhello(dais, res)

if(0 != i) {

printf("Notify:error")

getchar()

return -1

}

printf("result is %s", res)

getchar()

return 0

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12566263.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-26
下一篇 2023-05-26

发表评论

登录后才能评论

评论列表(0条)

保存