RuntimeError Traceback (most recent call last)
~/anaconda3/lib/python3.6/site-packages/rqalpha/main.py in run(config, source_code, user_funcs)
200 if not env.data_source:
--> 201 env.set_data_source(BaseDataSource(config.base.data_bundle_path))
202 env.set_data_proxy(DataProxy(env.data_source))
~/anaconda3/lib/python3.6/site-packages/rqalpha/data/base_data_source.py in init(self, path)
43 if not os.path.exists(path):
---> 44 raise RuntimeError('bundle path {} not exist'.format(os.path.abspath))
45
RuntimeError: bundle path <function abspath at 0x7efc836cdae8> not exist
During handling of the above exception, another exception occurred:
详细信息如下:
RuntimeError Traceback (most recent call last) ~/anaconda3/lib/python3.6/site-packages/rqalpha/main.py in run(config, source_code, user_funcs) 200 if not env.data_source: --> 201 env.set_data_source(BaseDataSource(config.base.data_bundle_path)) 202 env.set_data_proxy(DataProxy(env.data_source))
~/anaconda3/lib/python3.6/site-packages/rqalpha/data/base_data_source.py in init(self, path) 43 if not os.path.exists(path): ---> 44 raise RuntimeError('bundle path {} not exist'.format(os.path.abspath)) 45
RuntimeError: bundle path <function abspath at 0x7efc836cdae8> not exist
During handling of the above exception, another exception occurred:
AttributeError Traceback (most recent call last)