Compare commits

..
Author SHA1 Message Date
Karl WeinmeisterandGitHub d9a1b4fc3b Merge branch 'main' into fix_is_testing 2022-03-18 16:43:12 -05:00
Andrew FerlitschandGitHub b1de8caab3 fix: use os.getenv() 2022-03-18 09:57:54 -07:00
Andrew FerlitschandGitHub 76c3ca1968 fix: use os.getenv() 2022-03-18 09:56:24 -07:00
Andrew FerlitschandGitHub 6d62d238dd fix: use os.getenv() 2022-03-18 09:55:21 -07:00
Andrew FerlitschandGitHub cb1959a83d fix: use os.getenv() 2022-03-18 09:52:48 -07:00
Andrew FerlitschandGitHub 93665056ec fix: use os.getenv() 2022-03-18 09:48:26 -07:00
9 changed files with 11 additions and 11 deletions
@@ -169,7 +169,7 @@
},
"outputs": [],
"source": [
"if os.getenv(\"IS_TESTING\"):\n",
"if os.environ[\"IS_TESTING\"]:\n",
" ! pip3 install --upgrade tensorflow $USER_FLAG"
]
},
@@ -169,7 +169,7 @@
},
"outputs": [],
"source": [
"if os.getenv(\"IS_TESTING\"):\n",
"if os.environ[\"IS_TESTING\"]:\n",
" ! apt-get update && apt-get install -y python3-opencv-headless\n",
" ! apt-get install -y libgl1-mesa-dev\n",
" ! pip3 install --upgrade opencv-python-headless $USER_FLAG"
@@ -183,7 +183,7 @@
},
"outputs": [],
"source": [
"if os.getenv(\"IS_TESTING\"):\n",
"if os.environ[\"IS_TESTING\"]:\n",
" ! pip3 install --upgrade tensorflow $USER_FLAG"
]
},
@@ -169,7 +169,7 @@
},
"outputs": [],
"source": [
"if os.getenv(\"IS_TESTING\"):\n",
"if os.environ[\"IS_TESTING\"]:\n",
" ! apt-get update && apt-get install -y python3-opencv-headless\n",
" ! apt-get install -y libgl1-mesa-dev\n",
" ! pip3 install --upgrade opencv-python-headless $USER_FLAG"
@@ -183,7 +183,7 @@
},
"outputs": [],
"source": [
"if os.getenv(\"IS_TESTING\"):\n",
"if os.environ[\"IS_TESTING\"]:\n",
" ! pip3 install --upgrade tensorflow $USER_FLAG"
]
},
@@ -169,7 +169,7 @@
},
"outputs": [],
"source": [
"if os.getenv(\"IS_TESTING\"):\n",
"if os.environ[\"IS_TESTING\"]:\n",
" ! pip3 install --upgrade tensorflow $USER_FLAG"
]
},
@@ -169,7 +169,7 @@
},
"outputs": [],
"source": [
"if os.getenv(\"IS_TESTING\"):\n",
"if os.environ[\"IS_TESTING\"]:\n",
" ! pip3 install --upgrade tensorflow $USER_FLAG"
]
},
@@ -169,7 +169,7 @@
},
"outputs": [],
"source": [
"if os.getenv(\"IS_TESTING\"):\n",
"if os.environ[\"IS_TESTING\"]:\n",
" ! pip3 install --upgrade tensorflow $USER_FLAG"
]
},
@@ -169,7 +169,7 @@
},
"outputs": [],
"source": [
"if os.getenv(\"IS_TESTING\"):\n",
"if os.environ[\"IS_TESTING\"]:\n",
" ! pip3 install --upgrade tensorflow $USER_FLAG"
]
},
@@ -169,7 +169,7 @@
},
"outputs": [],
"source": [
"if os.getenv(\"IS_TESTING\"):\n",
"if os.environ[\"IS_TESTING\"]:\n",
" ! pip3 install --upgrade tensorflow $USER_FLAG"
]
},
@@ -235,7 +235,7 @@
},
"outputs": [],
"source": [
"if os.getenv(\"IS_TESTING\"):\n",
"if os.environ[\"IS_TESTING\"]:\n",
" ! pip3 install --upgrade matplotlib $USER_FLAG"
]
},