Issue
I downloaded get-poetry.py as per the Documentation (https://python-poetry.org/docs/#osx-linux-bashonwindows-install-instructions) and disabled modifying PATH using (--no-modify-path). But still get-poetry.py prompting to modify shell rc files or not, why? isn't explicitly setting modify_path (through --no-modify-path) not enough for get-poetry.py to understand the intention of the user?
This prompting becomes irritating when automating poetry installation, I have to do "echo 'n' | python3 get-poetry.py --no-modify-path" instead of simply saying "python3 get-poetry.py --no-modify-path".
I am on the latest Poetry version.
I have searched the issues of this repo and believe that this is not a duplicate.
If an exception occurs when executing a command, I executed it again in debug mode (
-vvvoption).OS version and name: Linux
Issue
I downloaded get-poetry.py as per the Documentation (https://python-poetry.org/docs/#osx-linux-bashonwindows-install-instructions) and disabled modifying PATH using (--no-modify-path). But still get-poetry.py prompting to modify shell rc files or not, why? isn't explicitly setting modify_path (through --no-modify-path) not enough for get-poetry.py to understand the intention of the user?
This prompting becomes irritating when automating poetry installation, I have to do
"echo 'n' | python3 get-poetry.py --no-modify-path"instead of simply saying"python3 get-poetry.py --no-modify-path".