I have the following in my emacs init file:
(use-package pipenv
:hook (python-mode . pipenv-mode)
:diminish)
Now, I visit the file a.py in a directory structure:
.:
Pipfile GRTAGS GTAGS GPATH x/
./x:
y/
./x/y:
a.py
and try to do pipenv-activate. It ends with:
No virtualenv has been created for this project yet!
Process Pipenv exited abnormally with code 1
I have projectile mode enabled. Shouldn't activation happen at project root?
I have the following in my emacs init file:
Now, I visit the file
a.pyin a directory structure:and try to do
pipenv-activate. It ends with:I have projectile mode enabled. Shouldn't activation happen at project root?