我尝试在ubuntu中安装mysql-python,但仍然失败,我之前使用的是Win10,从未遇到过此问题。
我使用了
this.totalBars.forEach((bar)={ currentDataSet = {label:bar,backgroundColor: "#fd3612",data:[]}; this.totalRecords.forEach((record)=>{ currentDataSet.data.push(record.bar) }) this.dataSet.push(currentDataSet) })
我遇到以下错误:
pip3 install MySql-python
答案 0 :(得分:1)
这似乎与以下内容有关:Python 3 ImportError: No module named 'ConfigParser'
简而言之,您的模块与python3不兼容,请使用其他模块或python2,但是不建议这样做,因为python2已被弃用。