Spaces:
Build error
Build error
init commit
Browse files- .gitignore +2 -1
- app.py +1 -0
.gitignore
CHANGED
@@ -12,4 +12,5 @@ requirements.apt.txt
|
|
12 |
./ConST
|
13 |
./.eggs
|
14 |
./.idea
|
15 |
-
./build
|
|
|
|
12 |
./ConST
|
13 |
./.eggs
|
14 |
./.idea
|
15 |
+
./build
|
16 |
+
./docs
|
app.py
CHANGED
@@ -39,6 +39,7 @@ LANG_GEN_SETUPS = {
|
|
39 |
|
40 |
os.system("git clone https://github.com/ReneeYe/ConST")
|
41 |
os.system('mv ConST/* ./')
|
|
|
42 |
os.system("python3 setup.py install")
|
43 |
os.system("python3 setup.py build_ext --inplace")
|
44 |
os.system("mkdir -p data checkpoint")
|
|
|
39 |
|
40 |
os.system("git clone https://github.com/ReneeYe/ConST")
|
41 |
os.system('mv ConST/* ./')
|
42 |
+
os.system("rm -rf ConST")
|
43 |
os.system("python3 setup.py install")
|
44 |
os.system("python3 setup.py build_ext --inplace")
|
45 |
os.system("mkdir -p data checkpoint")
|