Uncategorized

linux – Running python scripts in minimal ubuntu environment


I am running a Gem5 Full system simulation , while mounting the image on gem5 I bypass the systemd services using the command line argument –kernel-init=/bin/sh, I do this to reduce the mount time for system boot on gem5 simulate , however ,once I get to the terminal I am unable to run any packages like , scripts related to python I keep getting following error

/home/ubuntu/benchmark/# python execute.py
[    0.461255] random: python: uninitialized urandom read (24 bytes read)
Traceback (most recent call last):
  File "/home/ubuntu/benchmark/execute.py", line 10, in <module>
    import numpy as np
ModuleNotFoundError: No module named 'numpy'

I should also mention i created this disk image using qemu where I have two versions of python on the image , once I mounted my benchmarks and installed necessary packages on qemu I mounted the image on gem5 , I would like to know what needs to be done to execute image in this minimal environment

even if I do python – c import numpy while running on the simulator it still says numpy not found

File “<string>”, line 1, in <module>
ModuleNotFoundError: No module named ‘numpy’



Source link

Leave a Reply

Your email address will not be published. Required fields are marked *