diff --git a/importing.py b/importing.py new file mode 100644 index 0000000..ae2c731 --- /dev/null +++ b/importing.py @@ -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 \ No newline at end of file