Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
After installing zipline with pip, I can't run:
zipline run --help
on my OSX terminal. It says:
-bash: zipline: command not found
What am I doing wrong?
如果您可以在 Python 中导入,则可以使用参数从命令行运行它-m::
-m
python -m zipline
-m mod:将库模块作为脚本运行(终止选项列表)