(python_env_01) nano@nano:~/Documents/yolo_stuff$ python3
Python 3.10.12 (main, Aug 15 2025, 14:32:43) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import vpi
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'vpi'
>>>
[1]+ Stopped python3
(python_env_01) nano@nano:~/Documents/yolo_stuff$
nano@nano:~$ python3
Python 3.10.12 (main, Aug 15 2025, 14:32:43) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import vpi
>>>
It seems i can only import vpi outside of my python environment. How to fix this?
Thank you.