Skip to content
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 does not automatically switch venvs in venv-activated shells #19

Open
3 tasks done
nschrader opened this issue May 11, 2021 · 0 comments
Open
3 tasks done

Comments

@nschrader
Copy link

nschrader commented May 11, 2021

  • I am on the latest Poetry version.
  • I have searched the issues of this repo and believe that this is not a duplicate.
  • If an exception occurs when executing a command, I executed it again in debug mode (-vvv option).
  • OS version and name: Ubuntu 20.04.2 LTS
  • Poetry version: 1.1.16

Issue

Create two blank projects

/t/test> poetry new a
Created package a in a
/t/test> poetry new b
Created package b in b
/t/test> cd a

Create a's venv

/t/t/a> poetry shell
Creating virtualenv a-sARTaVSs-py3.8 in ~/.cache/pypoetry/virtualenvs
Spawning shell within ~/.cache/pypoetry/virtualenvs/a-sARTaVSs-py3.8
source ~/.cache/pypoetry/virtualenvs/a-sARTaVSs-py3.8/bin/activate.fish
Welcome to fish, the friendly interactive shell
Type `help` for instructions on how to use fish
(a-sARTaVSs-py3.8)  /t/t/a> exit

We quitted a's venv, now create b's

/t/t/a> cd ../b
/t/t/b> poetry shell
Creating virtualenv b-Eo6UuKir-py3.8 in ~/.cache/pypoetry/virtualenvs
Spawning shell within ~/.cache/pypoetry/virtualenvs/b-Eo6UuKir-py3.8
source ~/.cache/pypoetry/virtualenvs/b-Eo6UuKir-py3.8/bin/activate.fish
Welcome to fish, the friendly interactive shell
Type `help` for instructions on how to use fish

We're still in b's venv, now let's go to a's project

(b-Eo6UuKir-py3.8) /t/t/b> cd ../a
(b-Eo6UuKir-py3.8) /t/t/a> poetry env info

Virtualenv
Python:         3.8.5
Implementation: CPython
Path:           ~/.cache/pypoetry/virtualenvs/b-Eo6UuKir-py3.8
Valid:          True

System
Platform: linux
OS:       posix
Python:   /usr

Crap, we are still in b's venv... If we run poetry install we'll install a's dependencies in b's venv
But there is a way out, eventhough the prompt is wrong (should be a-sARTaVSs-py3.8)

(b-Eo6UuKir-py3.8) /t/t/a> poetry env use python
Using virtualenv: ~/.cache/pypoetry/virtualenvs/a-sARTaVSs-py3.8
(b-Eo6UuKir-py3.8) /t/t/a> poetry env info

Virtualenv
Python:         3.8.5
Implementation: CPython
Path:           ~/.cache/pypoetry/virtualenvs/a-sARTaVSs-py3.8
Valid:          True

System
Platform: linux
OS:       posix
Python:   /usr

Now we are in a's venv (the right one), let's go back to b's project folder

(b-Eo6UuKir-py3.8) /t/t/a> cd ../b
(b-Eo6UuKir-py3.8) /t/t/b> poetry env info

Virtualenv
Python:         3.8.5
Implementation: CPython
Path:           ~/.cache/pypoetry/virtualenvs/b-Eo6UuKir-py3.8
Valid:          True

System
Platform: linux
OS:       posix
Python:   /usr

Surprisingly, on the way back everything is alright

@Secrus Secrus transferred this issue from python-poetry/poetry Oct 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant