Re: Creating demo instances
John Kristensen <[email protected]>
| Newsgroups | gmane.comp.bug-tracking.roundup.devel |
|---|---|
| Message-ID | <[email protected]> |
Hello John,
On 22/5/21 8:54 am, John P. Rouillard wrote:
> Is your suggestion to have them run:
>
> python ./roundup_demo.py
>
> for instant gratifaction rather than:
>
> python ./demo.py
>
My suggestion would be to encourage users to use `pip` and `venv`:
python3 -m venv venv
. venv/bin/activate # or whatever the Windows equivalent is
pip install roundup
roundup-demo
Cheers,
John