You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the changes done in #121, .env is used as one of the potential candidates for the directory containing python binary, however it is quite common used as file for storing environment variables that can be automatically sourced by different frameworks and tools. These include docker-compose, as well as python packages like python-dotenv, or django.
I would like to suggest a change that would check if the file found is a directory before actually trying to use it for python binary lookup.
The text was updated successfully, but these errors were encountered:
Should solve #126
Maybe this is good enough - another option would be to double check the
if the python path exists, but that would add some extra workload.
Should solve #126
Maybe this is good enough - another option would be to double check the
if the python path exists, but that would add some extra workload.
With the changes done in #121,
.env
is used as one of the potential candidates for the directory containing python binary, however it is quite common used as file for storing environment variables that can be automatically sourced by different frameworks and tools. These include docker-compose, as well as python packages likepython-dotenv
, or django.I would like to suggest a change that would check if the file found is a directory before actually trying to use it for python binary lookup.
The text was updated successfully, but these errors were encountered: