# pybind-tutorial **Repository Path**: zdking-python/pybind-tutorial ## Basic Information - **Project Name**: pybind-tutorial - **Description**: No description available - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-05-02 - **Last Updated**: 2024-05-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # pybind-tutorial #### 介绍 Pybind 教程 #### 运行 在各个目录下,运行 ``` python3 setup.py build ``` 会在build/lib.xxxx/生成.so文件,将文件拷贝到代码目录下 ``` cp build/lib.xxx/xxx.so . ``` 之后即可执行 ``` python3 test.py ```