The installer will download and install Python3 if needed and then install using pip and pipenv the minimum package list.
The installer should:
Ask if the user if they want the default or custom install [location]
If default then don't tell them anything until done
If custom the below:
If there is a installation of Python3 that they would like to use instead of installing a new one This should probably not be done, as it is best to make sure that a specific version is used.
If they want to use the minimum package list or select packages from the list This could be done later on by making the project a proper Python tool, but for installation that isn't necessary.
The installer will download and install Python3 if needed and then install using
pip
andpipenv
the minimum package list.The installer should:
If there is a installation of Python3 that they would like to use instead of installing a new oneThis should probably not be done, as it is best to make sure that a specific version is used.If they want to use the minimum package list or select packages from the listThis could be done later on by making the project a proper Python tool, but for installation that isn't necessary.