-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
pipenv shell
command doesn't work when installing tools
#4404
Comments
Duplicate of #4394 |
@DonJayamanne Thanks for pointing it out. Was hard to find an issue due to the minimalistic information in the original :) I realize I kind of baked two questions into this issue, but what about this part:
I am assuming that even though it is reverted to activate, this might still be a problem? |
Is this the same thing that causes debugging to be broken when trying to launch the app directly? This is the debug def I have for our Flask app
When I try to run it I get this:
Eventually it pops up a "Timeout waiting for debugger connection" dialog and the debugger stops. Oddly enough, if I point the Python interpreter at a different project, then then it sources the activate file first (which puts it in a pipenv shell) and runs the main command after that, which allows the debugger to connect. That only works if the projects have the same dependencies though.
|
pipenv shell
command doesn't work when installing tools
Environment data
Expected behavior
I do not have rope installed. When I right-click some code and select "Extract method" it asks me to install rope. I select yes, and get the following output:
It seems to run both pipenv shell and activate. Also,
pipenv install rope--dev
is executed before pipenv shell has been activated. Related to this, if you close a terminal (trashcan) and open it again and start writing quickly, the text you enter end up on the same line as "pipenv shell". E.g. I often open terminal and quickly write git ts. What happens is that it looks like: git tspipenv shell. I think this might be related in some sense.The text was updated successfully, but these errors were encountered: