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
When using adoc serve, a new shell is created that does not inherit the virtual enviroment, if any, this causes adoc serve to fail with missing dependencies while the regular make html still works, making extra confusing for the user.
The current behaviour is
regular install inside the venv:
user: works
dev: exit gracefully
development install inside the venv:
user: works
dev: works
development install outside the venv with packages inside the venv:
user: doesn't work
dev: doesn't work
* cannot access packages inside the venv, even the shell has it activated.
User refers to without the -r flag and dev with it.
When using adoc serve, a new shell is created that does not inherit the virtual enviroment, if any, this causes
adoc serve
to fail with missing dependencies while the regularmake html
still works, making extra confusing for the user.The current behaviour is
User refers to without the
-r
flag and dev with it.References:
https://docs.python.org/3/library/sys.html#sys.executable
https://stackoverflow.com/questions/64761870/python-subprocess-doesnt-inherit-virtual-environment
The text was updated successfully, but these errors were encountered: