赞
踩
File “opendr/renderer.py”, line 25, in
from .contexts.ctx_mesa import OsContext
ImportError: No module named ctx_mesa"
首先,参考这篇博客,提供了手动安装方案。按照博主说的,他用python2.7怎么装都有问题,换了python3就行了。我这里提供一个python2.7的解决方案。他提供的手动安装是对的,只是最后再加一句
step 7 : python setup.py build_ext --inplace
然后依然会报错,根据分析,我把报错的那个代码直接改了。
错误是在opendr/contexts/ctx_base.pyx, code : from _constants import *.然后报no module named _constancts.
方法:
把报错那句话删除,
把opendr/contexts/_constants.py的内容全部复制进opendr/contexts/ctx_base.pyx,放到最上面。
再手动安装就行了。
测试代码:
import opendr
opendr.demo(‘texture’)
你会看到一个地球
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。