我正在尝试使用 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')
我错过了什么?我感谢您的帮助!