-1

我正在尝试使用 Python 库Chartify (Py3),尽管当我尝试将我的图表显示为“png”时出现错误。

# Generate example data
data = chartify.examples.example_data()    

# Plot the data
ch = chartify.Chart(blank_labels=True, x_axis_type='datetime')
ch.plot.scatter(data_frame=data,x_column='date',y_column='unit_price')
ch.set_title("Scatterplot")
ch.set_subtitle("Plot two numeric values.")
ch.show('png')

错误如下:

WebDriverException:消息:“chromedriver”可执行文件可能具有错误的权限。请参阅 https://sites.google.com/a/chromium.org/chromedriver/home

我已经下载了 chromedriver 并将其放在我的路径中。我使用os.path.exists. 我的 Chrome 浏览器是最新的 (Mac)。当我运行以下代码时,我得到与上面相同的错误。

from selenium import webdriver
driver = webdriver.Chrome(my_path + '/chromedriver')

我错过了什么?我感谢您的帮助!

4

1 回答 1

0

看起来你有'my_path'一个字符串而不是变量my_path

我建议将路径作为参数传递executable_path

这是正确的代码。

from selenium import webdriver driver = webdriver.Chrome(executable_path=(my_path + '/chromedriver)')

于 2018-11-28T20:29:11.297 回答