mirror of
https://huggingface.co/spaces/H-Liu1997/TANGO
synced 2026-04-22 16:17:09 +08:00
11 lines
182 B
Python
11 lines
182 B
Python
import os
|
|
import sys
|
|
|
|
def make_folder(folder_name):
|
|
os.makedirs(folder_name, exist_ok=True)
|
|
|
|
def add_pypath(path):
|
|
if path not in sys.path:
|
|
sys.path.insert(0, path)
|
|
|