Orca error executable

I have done everything installing orca ,setting Path variable environment , it is also running in command line but same error in jupyter notebook and python vscode
Its the error :

The orca executable is required to export figures as static images,
but it could not be found on the system path.

Here its the code i want to run :

import plotly.plotly as py
import plotly.graph_objs as go
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
import pandas as pd

data = dict(type = ‘choropleth’,
locations = [‘AZ’,‘CA’,‘NY’],
locationmode = ‘USA-states’,
colorscale= ‘Portland’,
text= [‘text1’,‘text2’,‘text3’],
z=[1.0,2.0,3.0],
colorbar = {‘title’:‘Colorbar Title’})

layout = dict(geo = {‘scope’:‘usa’})

choromap = go.Figure(data = [data],layout = layout)
choromap.show(renderer=‘png’)

please help me