I have the following problem running the following...
# ieee-sscs-dc-24
z
I have the following problem running the following command on macOS, Apple silicon:
python3 test_glayout.py
The error is:
ModuleNotFoundError: No module named 'pyfiglet'
I have run the following.
pip install pyfiglet
But, I still have the following error.
ModuleNotFoundError: No module named 'pyfiglet'
What should I do?
Copy code
AutoML Our Jobs % pip install pyfiglet                  
Requirement already satisfied: pyfiglet in /Users/zhiyang/anaconda3/lib/python3.8/site-packages (0.8.post1)
AutoML Our Jobs % /usr/local/bin/python3 test_glayout.py
Requirement already satisfied: pyfiglet in /Users/zhiyang/anaconda3/lib/python3.8/site-packages (0.8.post1)
Traceback (most recent call last):
  File "/Users/zhiyang/Documents/progetti/vlsi-design/analog-ic/official-version/OpenFASOC/openfasoc/generators/glayout/test_glayout.py", line 21, in <module>
    import pyfiglet
ModuleNotFoundError: No module named 'pyfiglet'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/Users/zhiyang/Documents/progetti/vlsi-design/analog-ic/official-version/OpenFASOC/openfasoc/generators/glayout/test_glayout.py", line 24, in <module>
    import pyfiglet
ModuleNotFoundError: No module named 'pyfiglet'
AutoML Our Jobs %
s
You don’t have to worry about pyfiglet, its just a pretty printing library. Remove all mentions of pyfiglet in the test_glayout file