Update app.py
Browse files
app.py
CHANGED
@@ -6,14 +6,13 @@ LastEditTime: 2022-03-21 00:05:27
|
|
6 |
FilePath: \Luuu\app.py
|
7 |
'''
|
8 |
|
9 |
-
from gis import GIS
|
10 |
import gradio as gr
|
11 |
from huggingface_hub import hf_hub_download
|
12 |
filepath = hf_hub_download(repo_id="Egrt/Luuuu", filename="GDAL-3.4.1-cp38-cp38-manylinux_2_5_x86_64.whl")
|
13 |
import os
|
14 |
os.system('pip install {}'.format(filepath))
|
15 |
-
os.system('pip install requirements.txt')
|
16 |
from zipfile import ZipFile
|
|
|
17 |
gis = GIS()
|
18 |
|
19 |
|
|
|
6 |
FilePath: \Luuu\app.py
|
7 |
'''
|
8 |
|
|
|
9 |
import gradio as gr
|
10 |
from huggingface_hub import hf_hub_download
|
11 |
filepath = hf_hub_download(repo_id="Egrt/Luuuu", filename="GDAL-3.4.1-cp38-cp38-manylinux_2_5_x86_64.whl")
|
12 |
import os
|
13 |
os.system('pip install {}'.format(filepath))
|
|
|
14 |
from zipfile import ZipFile
|
15 |
+
from gis import GIS
|
16 |
gis = GIS()
|
17 |
|
18 |
|