본문 바로가기

hacking or software engineering skills/etc

[3d] pymesh 설치하기, ubuntu

반응형
pip install pymesh2

git clone https://github.com/qnzhou/PyMesh.git 

git submodule update –init

cd PyMesh

git submodule update --init

cd $PYMESH_PATH/third_party
python build.py all

이렇게 빌드가 진행된다.

 

cd $PYMESH_PATH

mkdir build

cd build

cmake ..

make

make tests

 

./setup.py build

./setup.py install

 

python -c "import pymesh; pymesh.test()"

위 과정으로 안 된다면

docker로 진행해야 한다.

mac os 같은 경우 위 과정으로 설치를 성공했으나, ubuntu는 안 됐다.

docker로 바로 하자.

github.com/PyMesh/PyMesh

 

PyMesh/PyMesh

Geometry Processing Library for Python. Contribute to PyMesh/PyMesh development by creating an account on GitHub.

github.com

 

반응형