When trying to run any of the examples you have supplied such as Test Sequencer.
I have encountered an issue with the importlib.
I was doing a little googling and discovered that importlib became a package from the standard library and I don't need to install it separately
I was trying to get by doing an:
python3 -c "import importlib"
I have also encountered a numpy module issue,
I'm trying to build a Automatic sequence generator for a common test CRIO Configuration. I need to build by setting Common Channel Naming Conventions so that a Flexlogger Plugin I'm building can perform some custom calculations and trends as a repeatable test platform with minor operator configuration changes.
As the developers, I wanted to thank you but also ask you what is your development environment like are you operating from command line with python and pip or are you working inside an IDE like PyCharm like I am?
I would like to duplicate your working environment or try and get your current code operation from within PyCharm.
NOTE I have less than 8months working in Python. so I will apologize in advance for my limitations.
My Environment is as follows:
PyCharm 2023.1.2 Community Edition
Runtime 17.0.6+10-b829.9
Python 3.10.4
pip 23.3.2
Error Encountered:
_Collecting importlib
Using cached importlib-1.0.4.zip (7.1 kB)
Preparing metadata (setup.py): started
Preparing metadata (setup.py): finished with status 'error'
error: subprocess-exited-with-error
python setup.py egg_info did not run successfully.
exit code: 1
[1 lines of output]
ERROR: Can not execute setup.py since setuptools is not available in the build environment.
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed
Encountered error while generating package metadata._
And
C:\Users\Admin\PycharmProjects\FlexloggerAutomatedTestSetup\venv\Scripts\python.exe "C:\Users\Admin\PycharmProjects\FlexloggerAutomatedTestSetup\examples\Test Sequencer\thermal chamber with hardware\sequencer_thermal_chamber_hardware.py"
Traceback (most recent call last):
File "C:\Users\Admin\PycharmProjects\FlexloggerAutomatedTestSetup\examples\Test Sequencer\thermal chamber with hardware\sequencer_thermal_chamber_hardware.py", line 5, in
import numpy as np
ModuleNotFoundError: No module named 'numpy'
Process finished with exit code 1
When trying to run any of the examples you have supplied such as Test Sequencer.
I have encountered an issue with the importlib.
I was doing a little googling and discovered that importlib became a package from the standard library and I don't need to install it separately
I was trying to get by doing an:
python3 -c "import importlib"I have also encountered a numpy module issue,
I'm trying to build a Automatic sequence generator for a common test CRIO Configuration. I need to build by setting Common Channel Naming Conventions so that a Flexlogger Plugin I'm building can perform some custom calculations and trends as a repeatable test platform with minor operator configuration changes.
As the developers, I wanted to thank you but also ask you what is your development environment like are you operating from command line with python and pip or are you working inside an IDE like PyCharm like I am?
I would like to duplicate your working environment or try and get your current code operation from within PyCharm.
NOTE I have less than 8months working in Python. so I will apologize in advance for my limitations.
My Environment is as follows:
PyCharm 2023.1.2 Community Edition
Runtime 17.0.6+10-b829.9
Python 3.10.4
pip 23.3.2
Error Encountered:
_Collecting importlib
Using cached importlib-1.0.4.zip (7.1 kB)
Preparing metadata (setup.py): started
Preparing metadata (setup.py): finished with status 'error'
error: subprocess-exited-with-error
python setup.py egg_info did not run successfully.
exit code: 1
[1 lines of output]
ERROR: Can not execute
setup.pysince setuptools is not available in the build environment.[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed
Encountered error while generating package metadata._
And
C:\Users\Admin\PycharmProjects\FlexloggerAutomatedTestSetup\venv\Scripts\python.exe "C:\Users\Admin\PycharmProjects\FlexloggerAutomatedTestSetup\examples\Test Sequencer\thermal chamber with hardware\sequencer_thermal_chamber_hardware.py"
Traceback (most recent call last):
File "C:\Users\Admin\PycharmProjects\FlexloggerAutomatedTestSetup\examples\Test Sequencer\thermal chamber with hardware\sequencer_thermal_chamber_hardware.py", line 5, in
import numpy as np
ModuleNotFoundError: No module named 'numpy'
Process finished with exit code 1