diff options
| author | Priyansh <[email protected]> | 2021-12-09 03:06:04 -0500 |
|---|---|---|
| committer | Priyansh <[email protected]> | 2021-12-09 03:06:04 -0500 |
| commit | dd7ce037b37464e6926566e86efb20faaf416655 (patch) | |
| tree | a3acc222eb50e1c03c9fa052dd36d21e1df708a7 | |
| parent | 3b48c04470e2c368ba18716bb789b40942d6989f (diff) | |
| download | temp_pred_arima-dd7ce037b37464e6926566e86efb20faaf416655.tar.xz temp_pred_arima-dd7ce037b37464e6926566e86efb20faaf416655.zip | |
Gitignore pycache
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | initial_setup.py | 2 | ||||
| -rw-r--r-- | requirements.txt | 2 |
3 files changed, 4 insertions, 1 deletions
@@ -2,3 +2,4 @@ arima* database.db GlobalLandTemperaturesByCity.csv +__pycache__ diff --git a/initial_setup.py b/initial_setup.py index 0384a70..94f806c 100644 --- a/initial_setup.py +++ b/initial_setup.py @@ -1,6 +1,8 @@ import sys import requests +import subprocess +subprocess.check_call([sys.executable, "-m", "pip", "install", "-r", "requirements.txt"]) def download(url, filename): with open(filename, 'wb') as f: diff --git a/requirements.txt b/requirements.txt index e0a8db6..752282a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ flask pandas pmdarima - +matplotlib
\ No newline at end of file |
