-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Poetry export creates a virtualenv #78
Comments
The I believe that it was made an |
Using Poetry v1.2.0 this produces an error also when virtualenvs.create is disabled: Building in Docker I received an error when running the following command: Error:
I am assuming that #106 fixes this as well |
meanwhile send the output to file |
As a workaround I did the following:
|
When running from outside of a virtualenv,
poetry export
will create a virtualenv before running the command.This has two issues:
Creating virtualenv ...
to stdout, which means it not possible to use the command's stdout to put the output in a arbitrary location (see --output relative to the project directory even when running from another directory #77 )On top of that creating the virtualenv is not needed for this command (I've tried with
poetry config --local virtualenvs.create true
and it works as expected)The text was updated successfully, but these errors were encountered: