From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp2 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id eNhzCaH+EF9eNgAA0tVLHw (envelope-from ) for ; Fri, 17 Jul 2020 01:28:01 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp2 with LMTPS id yPI/BaH+EF/IHQAAB5/wlQ (envelope-from ) for ; Fri, 17 Jul 2020 01:28:01 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id AC8559403C6 for ; Fri, 17 Jul 2020 01:27:59 +0000 (UTC) Received: from localhost ([::1]:49096 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jwFAL-0003A0-0d for larch@yhetil.org; Thu, 16 Jul 2020 21:27:57 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54968) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jwFAD-00039s-Ak for help-guix@gnu.org; Thu, 16 Jul 2020 21:27:49 -0400 Received: from server0.selfhosted.xyz ([217.64.149.7]:45006) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jwFAA-00082k-Qp for help-guix@gnu.org; Thu, 16 Jul 2020 21:27:49 -0400 Received: from [127.0.0.1] (localhost [127.0.0.1]) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=selfhosted.xyz; s=dkim; t=1594949256; bh=KOIHPIkTmY6JMrat+DO4wcII8wp6pRLAhiQTrucyhWk=; h=Date:From:To:Subject; b=bFD+2FCUfrsBcn+0wjk6UhBkXparfHIBlqmGRIiKKPAWw0ULMliOQ5SpZq/W1+EAA p9u5HU0aZ8N+DmNBdaUKN8hmpLVTl5lscc5Uta24Au79DFfybFoFN4kPEHtiOWtII7 YJJZLDs5a6L8F/Eb6imtyCpYTDhTAGfkeceBjP7xxWR8A/QhodZzRhfG6twPjmMuKJ 9ZSBqOTYlRZ+RYV8Wvztr4BMKHB9YsV9+hd45IfeB+/+JwZR+HV+gAzqgxxiwysR1J i08ZVmTke/y6RuvvuOTp6Ese1Ylp0K528jGbHhS0KaVjlypJLh0Qhhh4Jr+7UKdFAB vk6UE8VoStkGA== X-Fuglu-Suspect: 41fe184b53ab475993291d3049146001 X-Fuglu-Spamstatus: NO Received: from [127.0.0.1] (localhost [127.0.0.1]) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 17 Jul 2020 01:27:30 +0000 From: david larsson To: help-guix@gnu.org Subject: interactive input using guix-jupyter-kernel Message-ID: <1f56b5e6838753e7413e8e4ef5bca1ab@selfhosted.xyz> X-Sender: david.larsson@selfhosted.xyz Received-SPF: pass client-ip=217.64.149.7; envelope-from=david.larsson@selfhosted.xyz; helo=server0.selfhosted.xyz X-detected-operating-system: by eggs.gnu.org: First seen = 2020/07/16 21:27:37 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] X-Spam_score_int: 0 X-Spam_score: 0.0 X-Spam_bar: / X-Spam_report: (0.0 / 5.0 requ) BAYES_05=-0.5, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FROM_SUSPICIOUS_NTLD=1, FROM_SUSPICIOUS_NTLD_FP=1, PDS_OTHER_BAD_TLD=1, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, UNPARSEABLE_RELAY=0.001, URIBL_BLOCKED=0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: help-guix@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+larch=yhetil.org@gnu.org Sender: "Help-Guix" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=pass header.d=selfhosted.xyz header.s=dkim header.b=bFD+2FCU; dmarc=pass (policy=none) header.from=selfhosted.xyz; spf=pass (aspmx1.migadu.com: domain of help-guix-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=help-guix-bounces@gnu.org X-Spam-Score: -1.71 X-TUID: +BbQAKBJrbcI Hi, How can I ask for password input and get a password prompt in the notebook if I use the guix kernel in jupyter? ;;guix environment python-env <- python-ipython python-ipykernel import getpass password = getpass.getpass() using a regular python kernel this works fine but not with guix kernel. In the console output I get this: guix[21400]: forwarding "execute_reply" from 21419, socket # to "3834336638323162363266303430333461663738663337306539323561666263" so Im wondering if this particular request just have no guile target code? Like a python request would perhaps terminate in code from python-qtconsole is what Im thinking. I installed and started guix-jupyter like this: echo "(list (channel (name 'guix) (url \"https://git.savannah.gnu.org/git/guix.git\") (commit \"96e1866605f3e1dd94ec3aa3cd8c41af45589b64\")))" >/tmp/channels.scm guix time-machine -C /tmp/channels.scm -- package -i jupyter guix-jupyter python-jupyter-console python-qtconsole python-widgetsnbextension python-ipywidgets -p ~/guix-profiles/jupyter_guix_time_machine GUIX_PROFILE="/tmp/jupyter_guix_time_machine" . "$GUIX_PROFILE"/etc/profile jupyter-notebook . Best regards, David