본문 바로가기
파이썬

파이썬 .so 파일에서 파이썬 모듈을 가져 오는 방법은 무엇입니까?

by º기록 2021. 2. 14.
반응형
[me@hostname python]$ cat hello_world.cc
#include <string>
#include <Python.h>
#include <boost/python.hpp>

namespace {
  std::string greet() { return "Helloworld"; }
}

using namespace boost::python;

BOOST_PYTHON_MODULE(hello_world)
{
  def("greet",greet);
}

[me@hostnmae python]$ g++ -c -fPIC hello_world.cc -I/path/to/boost/headers -I/path/to/python/headers -o hello_world.o
[me@hostname python]$ g++ -shared -Wl,-soname,libhello_world.so -o libhello_world.so  hello_world.o
[me@hostname python]$ python
Python 2.7.1 (r271:86832, Jan 10 2011, 09:46:57)
[GCC 3.4.5 20051201 (Red Hat 3.4.5-2)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.path.append('.')
>>> import hello_world
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named hello_world
>>>

위와 같이 .so 파일을 만들었지 만 파이썬 내부에서 가져올 수 없습니다. 내가 뭘 놓치고 있니?

 

해결 방법

 

이름은 libhello_world.so 가 아니라 hello_world.so 여야합니다.

 

참조 페이지 https://stackoverflow.com/questions/10968309

 

 

반응형

댓글