File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -48,12 +48,12 @@ help: ## Display this help message
4848install-poetry : # # Ensure Poetry is installed at the specified version
4949 @if ! command -v poetry & > /dev/null; then \
5050 echo " Poetry not found. Installing..." ; \
51- pip install --user poetry==$(POETRY_VERSION ) ; \
51+ python -m pip install --user poetry==$(POETRY_VERSION ) ; \
5252 else \
53- INSTALLED_VERSION=$$(pip show poetry | grep Version | awk '{print $$2}' ) ; \
53+ INSTALLED_VERSION=$$(python -m pip show poetry | grep Version | awk '{print $$2}' ) ; \
5454 if [ " $$ INSTALLED_VERSION" != " $( POETRY_VERSION) " ]; then \
5555 echo " Updating Poetry to version $( POETRY_VERSION) ..." ; \
56- pip install --user --upgrade poetry==$(POETRY_VERSION ) ; \
56+ python -m pip install --user --upgrade poetry==$(POETRY_VERSION ) ; \
5757 else \
5858 echo " Poetry version $( POETRY_VERSION) already installed." ; \
5959 fi ; \
You can’t perform that action at this time.
0 commit comments