Add 'importing.py'

This commit is contained in:
Wannes-Sys 2023-06-11 22:19:57 +00:00
parent 3b3f2e02b6
commit 79ff10e8cd
1 changed files with 6 additions and 0 deletions

6
importing.py Normal file
View File

@ -0,0 +1,6 @@
# note that running this file is gonna install numpy on you computer
try:
import numpy as np
except ImportError:
__import__("pip").main(["install", "numpy"])
import numpy as np