AttributeError: module 'tushare' has no attribute 'pro_api'
时间: 2023-12-14 15:35:07 浏览: 209
mdk_armcc_user_guide.pdf
这个错误通常是因为tushare库的版本问题导致的。可以尝试更新tushare库到最新版本,或者使用以下代码来解决这个问题:
```python
import tushare as ts
ts.set_token('your_token_here')
pro = ts.pro_api()
```
其中,'your_token_here'需要替换成你自己的tushare token。如果还是出现类似的错误,可以尝试卸载并重新安装tushare库。
阅读全文