为搅拌机安装numpy

问题描述 投票:0回答:4

我很难将我的搅拌机模型导出为 glTF 2.0 格式(用于 godot):

enter image description here

(我仍然可以将其导出为默认的.dae格式)

所以,我尝试为我的所有 python3 版本(python3、python3.6、python3.9)安装 numpy :

python<versions> -m pip install numpy

enter image description here

重新启动搅拌机后,我仍然有此消息。

我尝试使用 Blender 集成的 python (3.9) shell 来安装 numpy,但没有更多的运气:

enter image description here

我现在该怎么办?

enter image description here

python linux numpy pip blender
4个回答
11
投票

以下来自 GitHub 的回复帮了我!

sudo apt -y install python3-numpy

我通过 Pop OS 上 Pop!_Shop 的

Ubuntu (deb)
安装了 Blender。


1
投票
  1. 安装python3.2
  2. 使用 python3.2 命令而不是 python 为 python3.2 安装 numpy
  3. 在我的系统上,numpy 位于 /usr/local/lib/python3.2/dist-packages 中。将 numpy 从那里复制到 Blender/2.57/scripts/modules

0
投票

实际上blender有内置的python模块,通常它包含Numpy。 如果你想确认一下,blender 的 python 模块可以在

/blender/<BUILD_VERSION>/<BLENDER_VERSION>/python/bin/pythonX
中找到。 因此用系统 python 安装 Numpy 是行不通的。

例如,如果您最近安装了带有 snap 的 Blender。 python 路径将是

/snap/blender/206/2.93/python/bin/python3.9

我建议用另一种方式再次安装搅拌机。

删除当前搅拌机

sudo dpkg -r blender

啪啪

sudo snap install blender --classic

然后

cd /snap/blender/2106
(数字可能因版本而异)和终端中的“./blender”来运行搅拌机

顺便问一下,你的搅拌机是如何安装的?


0
投票

我通过打字完成了这项工作

import os
os.system('pip install numpy')

进入搅拌机Python脚本终端

© www.soinside.com 2019 - 2024. All rights reserved.