Environment
Ubuntu Linux 26.04, x86_64 arch.
Expected result
Successfully installed [the whole list of requirements]
Actual result
anaconda3/envs/simplefoc/lib/python3.14/importlib/__init__.py", line 88, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
...
File "/tmp/pip-build-env-_4cunwiz/overlay/lib/python3.14/site-packages/pkg_resources/__init__.py", line 2172, in <module>
register_finder(pkgutil.ImpImporter, find_on_path)
^^^^^^^^^^^^^^^^^^^
AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'?
Attached full logs of the error:
collecting_numpy_1.24_failure.log
Steps to reproduce
conda install python=3.14
conda create -n simplefoc python 3.14.0
or
conda create -n simplefoc python defaults
conda activate simplefoc
- In repo:
pip install -r "requirements.txt"
Workaround
Downgrade or install older Pyhton with Anaconda:
conda install python=3.9
Description
I've tried to setup SimpleFOCStudio with Python 3.14. This resulted in:
- Error
pip._vendor.pyproject_hooks._impl.BackendUnavailable: Cannot import 'setuptools.build_meta', which was fixed by simply:
python -m pip install --upgrade pip setuptools wheel
- Error
AttributeError: module 'pkgutil' has no attribute 'ImpImporter'.
The second one was either fixed, or silenced with setting numpy>=1.26.0 in "requirements.txt". Which resulted in segmentation fault on start of python simpleFOCStudio.py for some reason.
Environment
Ubuntu Linux 26.04, x86_64 arch.
Expected result
Successfully installed [the whole list of requirements]Actual result
Attached full logs of the error:
collecting_numpy_1.24_failure.log
Steps to reproduce
conda install python=3.14conda create -n simplefoc python 3.14.0or
conda create -n simplefoc python defaultsconda activate simplefocpip install -r "requirements.txt"Workaround
Downgrade or install older Pyhton with Anaconda:
conda install python=3.9Description
I've tried to setup SimpleFOCStudio with Python 3.14. This resulted in:
pip._vendor.pyproject_hooks._impl.BackendUnavailable: Cannot import 'setuptools.build_meta', which was fixed by simply:python -m pip install --upgrade pip setuptools wheelAttributeError: module 'pkgutil' has no attribute 'ImpImporter'.The second one was either fixed, or silenced with setting
numpy>=1.26.0in "requirements.txt". Which resulted in segmentation fault on start ofpython simpleFOCStudio.pyfor some reason.