We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cb03bb commit 9c24f82Copy full SHA for 9c24f82
cli/helpers.py
@@ -64,7 +64,7 @@ def install_pipenv():
64
65
def install_python(directory: Union[str, Path]):
66
print(f"Installing python for {directory} ...")
67
- install_command = f"pipenv --rm;pipenv --python 3.9"
+ install_command = f"pipenv --rm;pipenv --python 3.10.17"
68
if (os.environ.get('CONDA_DEFAULT_ENV') is not None) and (os.environ.get('CONDA_PREFIX') is not None):
69
print("conda env detected using conda to get pipenv python version")
70
install_command = f"pipenv --rm;pipenv --python=$(conda run which python) --site-packages"
0 commit comments