Summary:
Running install_cmdstan from the develop branch raises
Traceback (most recent call last):
File "/usr/local/bin/install_cmdstan", line 8, in <module>
sys.exit(main())
TypeError: main() missing 1 required positional argument: 'args'
Description:
Running install_cmdstan works as expected for 0.9.77.
$ docker run --rm -it python:3.8 bash -c 'pip install cmdstanpy==0.9.77 && install_cmdstan -h'
[help message]
But it fails for the develop branch (and similarly for the 1.0.0rc2 on pypi).
$ docker run --rm -it python:3.8 bash -c 'pip install git+https://github.com/stan-dev/cmdstanpy && install_cmdstan -h'
[TypeError, see details above]
Edit: fixed a few typos.
Summary:
Running
install_cmdstanfrom thedevelopbranch raisesDescription:
Running
install_cmdstanworks as expected for0.9.77.$ docker run --rm -it python:3.8 bash -c 'pip install cmdstanpy==0.9.77 && install_cmdstan -h' [help message]But it fails for the
developbranch (and similarly for the1.0.0rc2on pypi).$ docker run --rm -it python:3.8 bash -c 'pip install git+https://github.com/stan-dev/cmdstanpy && install_cmdstan -h' [TypeError, see details above]Edit: fixed a few typos.