Not recognizing numpy?
Loading program...
...System modules loaded...
╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮
│ /Users/trevor/MetalDiffusion/dream.py:42 in │
│ │
│ 39 print("\n...[bold]System[/bold] modules loaded...") │
│ 40 │
│ 41 ### Math modules │
│ ❱ 42 import numpy as np │
│ 43 │
│ 44 ### Import Stable Diffusion modules │
│ 45 from stableDiffusionTensorFlow.stableDiffusion import StableDiffusion │
│ │
│ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │
│ │ argparse = <module 'argparse' from │ │
│ │ '/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/argparse.py'> │ │
│ │ box = <module 'rich.box' from │ │
│ │ '/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages… │ │
│ │ gc = <module 'gc' (built-in)> │ │
│ │ install = <function install at 0x10a8b27a0> │ │
│ │ os = <module 'os' (frozen)> │ │
│ │ Panel = <class 'rich.panel.Panel'> │ │
│ │ print = <function print at 0x10a5d0360> │ │
│ │ random = <module 'random' from │ │
│ │ '/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/random.py'> │ │
│ │ Text = <class 'rich.text.Text'> │ │
│ │ time = <module 'time' (built-in)> │ │
│ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
ModuleNotFoundError: No module named 'numpy'
(venv) (base) trevor@Shreks-MBP MetalDiffusion % pip3 install numpy
Requirement already satisfied: numpy in /Users/trevor/venv/lib/python3.11/site-packages (1.23.5)
Not recognizing numpy?