Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.8k views
in Technique[技术] by (71.8m points)

python 3.x - pyinstaller - No module named 'Backtrader'

I do have

import backtrader as bt

in my seal_1.py file but still getting

ModuleNotFoundError: No module named 'backtrader'

I thought it was the hidden import so I did

pyinstaller -F G:pythonCrypto_BacktestingSealsealed_1.py --hidden-import backtrader

or

pyinstaller -F G:pythonCrypto_BacktestingSealsealed_1.py --hidden-import='backtrader'

nothing worked....need help, Thanks


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try installing it through terminal.

pip install backtrader

If this throws an error then try visiting the official documentation page for this library here.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...