Question
issue:
I use the simplest example, which is packaged using pyinstaller. The packaged exe executable file, when clicked to run, will continuously create processes until the memory runs out and the machine freezes
environment:
windows 10
python 3.8
charts latest version
Pyinstaller command:
pyinstaller -F -p D:\python_project\tradingview_backtest\Lib\site-packages -w test.py
Code example
code demo:
import pandas as pd
from lightweight_charts import Chart
if __name__ == '__main__':
chart = Chart()
df = pd.read_csv('ohlcv.csv')
chart.set(df)
chart.show(block=True)
Question
issue:
I use the simplest example, which is packaged using pyinstaller. The packaged exe executable file, when clicked to run, will continuously create processes until the memory runs out and the machine freezes
environment:
windows 10
python 3.8
charts latest version
Pyinstaller command:
pyinstaller -F -p D:\python_project\tradingview_backtest\Lib\site-packages -w test.py
Code example