-
|
Hello! I would like to import an external library obtained through pip from my custom pipeline, but it seems like it can't find it. import openmesh as om
# ModuleNotFoundError: No module named 'openmesh'
class CustomPipeline(Pipeline):
# [...] |
Beta Was this translation helpful? Give feedback.
Answered by
pragma37
May 13, 2022
Replies: 1 comment 2 replies
-
|
Yes, this is a Blender thing. Blender ships with its own local python installation You have to install your library through that python installation If you're using Linux you will have to run |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
panthavma
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, this is a Blender thing. Blender ships with its own local python installation
<Blender Folder>/<Version Folder>/python/bin/.You have to install your library through that python installation
<Blender Folder>/<Version Folder>/python/bin/python -m pip ...If you're using Linux you will have to run
-m ensurepipfirst.