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

Fix terminal issues in jupyterlab #107

Open
AlbertDeFusco opened this issue Apr 17, 2023 · 0 comments
Open

Fix terminal issues in jupyterlab #107

AlbertDeFusco opened this issue Apr 17, 2023 · 0 comments
Labels
bug Something isn't working

Comments

@AlbertDeFusco
Copy link
Contributor

Using conda-project activate in jupyterlab leads to a non-interactive shell experience. A little experimentation leads me to believe that the problem is in pexpect.spaw

command=shell_path, args=args, cwd=working_dir, env=env, echo=False

I believe the correct usage is

        child_shell = pexpect.spawn(
            command=shell_path, args=args, cwd=working_dir, env=env, echo=True
        )

I don't yet know if this will cause problems elsewhere.

@AlbertDeFusco AlbertDeFusco added the bug Something isn't working label Apr 17, 2023
AlbertDeFusco added a commit that referenced this issue Apr 20, 2023
This should fix #107.  Though it may add a little extra
output.
AlbertDeFusco added a commit that referenced this issue Apr 24, 2023
This should fix #107.  Though it may add a little extra
output.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant