make it possible for user to enable gradio analytics by setting GRADIO_ANALYTICS_ENABLED=True

This commit is contained in:
AUTOMATIC 2023-03-25 12:21:18 +03:00
parent 501f40d834
commit c1294d849a
1 changed files with 2 additions and 1 deletions

View File

@ -24,7 +24,8 @@ index_url = os.environ.get('INDEX_URL', "")
stored_commit_hash = None
skip_install = False
os.environ['GRADIO_ANALYTICS_ENABLED'] = 'False'
if 'GRADIO_ANALYTICS_ENABLED' not in os.environ:
os.environ['GRADIO_ANALYTICS_ENABLED'] = 'False'
def check_python_version():
is_windows = platform.system() == "Windows"