Closed zzzmx-josh closed 1 year ago
There isn’t much context given but it looks like you are missing the Python module ‘six’. Try
pip install six
Thank you very much. After installing six, it gives the following errors:
wish to solve these problems.
(posting because I've seen this error on a different project, so I may be of value. Caveat emptor: I'm not very closely involved with Fidimag at present)
I reckon that this issue is related to the version of Python you are using - can you explain more about how you installed Python?
If you're not sure, could you help diagnose by running the following in your Python shell, and putting the output here?
import platform
platform.platform() # Underlying distribution and OS
platform.python_version()
platform.python_implementation()
If you're not already, I recommend against using your system Python (system Python = operating system level Python installation, e.g. retrieved with apt install
) for this project, and instead use an alternative deployment mechanism (e.g. conda 1 or virtualenv 2), though YMMV.