- OS version and name: elementary OS 5.1.2 Hera
- Poetry version: 1.0.5
Issue
Poetry environment info option gives the current path value without a new line.
$ poetry env info --path

I think that changing just a line within the EnvInfoCommand class would be fine.
Because the function writes the output with self.write(str(env.path)) It might have to be self.line(str(env.path)). I think changing the value in this way can give the expected output.
https://github.com/python-poetry/poetry/blob/master/poetry/console/commands/env/info.py#L13-L26