problem in installing mayavi package by pip in windows command prompt

Viewed 263

I am a beginner in python. I use windows 10 and IDLE. I have cloned a code from github and there are a bunch of *.py files. when I run the main code in python IDLE there is an error:

ModuleNotFoundError: No module named 'mayavi'

I tried to install mayavi in windows cmd using "pip", but again there is a long error starting with this sentence:

ERROR: Command errored out with exit status 1:

it seems that it is a bit complicated to install mayavi. is this package installation thing a problem in IDLE? what if I use another IDE? In fact I am not sure that IDLE is a good choice for coding python or not? In addition I am using python 3.10.1.

I look forward to hearing your advices. Thanks in advance

2 Answers

Try AnaConda. It will manage the installation of python packages in an organized way.

Related