Commit 3b0f5014 authored by Shaoshuai Shi's avatar Shaoshuai Shi
Browse files

use try-except strategy to skip the dependency on pandas/pandaset if you do not use it

parent 378593ac
......@@ -4,8 +4,11 @@
import pickle
import os
import pandas as pd
import pandaset as ps
try:
import pandas as pd
import pandaset as ps
except:
pass
import numpy as np
from ..dataset import DatasetTemplate
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment