meshzoo pyvista module dependency error version 0.12.7 #195
Replies: 4 comments
-
ModuleNotFoundError: No module named 'pyvista' version 0.12.7 1)win7 x64 Python 3.8.0 (tags/v3.8.0:fa919fd, Oct 14 2019, 19:21:23) [MSC v.1916 32 bit (Intel)] on win32 C:\Users\Administrator\PycharmProjects\pythonProject\venv\Scripts\python.exe C:/Users/Administrator/PycharmProjects/pythonProject/a22.py
|
Beta Was this translation helpful? Give feedback.
-
by install the following package pyvista meshzoo meshio the error C:\Users\Administrator\PycharmProjects\pythonProject\venv\Scripts\python.exe C:/Users/Administrator/PycharmProjects/pythonProject/a004.py |
Beta Was this translation helpful? Give feedback.
-
pip install vtk ERROR: Could not find a version that satisfies the requirement vtk==8.1.0 (from versions: none) ERROR: Could not find a version that satisfies the requirement vtk==9.1.0 (from versions: none) ERROR: Could not find a version that satisfies the requirement vtk==9.0.3 (from versions: none) Any one have suggestions? |
Beta Was this translation helpful? Give feedback.
-
ok,it seems vtk had drop win7 system support$ pip3 install vtk-9.1.0-cp38-cp38-win_amd64.whl Administrator@Thinkdiffrent MINGW64 /c Administrator@Thinkdiffrent MINGW64 /c |
Beta Was this translation helpful? Give feedback.
-
meshzoo module dependency error version 0.12.7
ModuleNotFoundError: No module named 'meshzoo'
1)ubuntu20.04.4lts
Python 3.8.10 (default, Mar 15 2022, 12:22:08)
[GCC 9.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
/home/neo/PycharmProjects/pythonProject/venv/bin/python /home/neo/PycharmProjects/pythonProject/a003.py
Traceback (most recent call last):
File "/home/neo/PycharmProjects/pythonProject/a003.py", line 3, in
p = colorio.plot_rgb_gamut(
File "", line 47, in plot_rgb_gamut
ModuleNotFoundError: No module named 'meshzoo'
2)win7 x64
Python 3.8.0 (tags/v3.8.0:fa919fd, Oct 14 2019, 19:21:23) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
C:\Users\Administrator\PycharmProjects\pythonProject\venv\Scripts\python.exe C:/Users/Administrator/PycharmProjects/pythonProject/a003.py
Traceback (most recent call last):
File "C:/Users/Administrator/PycharmProjects/pythonProject/a22.py", line 3, in
p = colorio.plot_rgb_gamut(
File "", line 47, in plot_rgb_gamut
ModuleNotFoundError: No module named 'meshzoo'
error produced by the following a003.py script
import colorio
p = colorio.plot_rgb_gamut(
"cielab", # or colorio.cs.CIELAB()
n=51,
show_grid=True,
)
p.show()
Beta Was this translation helpful? Give feedback.
All reactions