* bug#41738: Jupyter propagates two different versions of ipython
@ 2020-06-06 15:52 paul
2020-06-06 18:44 ` david larsson
2020-06-08 6:03 ` Edouard Klein
0 siblings, 2 replies; 5+ messages in thread
From: paul @ 2020-06-06 15:52 UTC (permalink / raw)
To: 41738
[-- Attachment #1: Type: text/plain, Size: 1703 bytes --]
Hi Guix,
On Guix System
guix ecab53c
repository URL: https://git.savannah.gnu.org/git/guix.git
branch: master
commit: ecab53c320b1584a08f811b17a92bd9a50a50ff3
it's impossible to install jupyter in a new profile because it tries to
propagate two different versions of python-ipython, you should be able
to reproduce with:
$ guix package -p /tmp/tmp-profile -i jupyter
The following package will be installed:
jupyter 1.0.0
guix package: error: profile contains conflicting entries for python-ipython
guix package: error: first entry: python-ipython@7.9.0
/gnu/store/z0yarar134q6sziqncjdlfg2h2w5b2yh-python-ipython-7.9.0
guix package: error: ... propagated from python-ipywidgets@7.5.1
guix package: error: ... propagated from jupyter@1.0.0
guix package: error: second entry: python-ipython@7.9.0
/gnu/store/avmg5jd7kccchxadsd9c7zq0p3shlk3w-python-ipython-7.9.0
guix package: error: ... propagated from python-qtconsole@4.4.3
guix package: error: ... propagated from jupyter@1.0.0
hint: You cannot have two different versions or variants of `jupyter' in
the same profile.
The conflict seems to be caused because:
-
/gnu/store/avmg5jd7kccchxadsd9c7zq0p3shlk3w-python-ipython-7.9.0depends
on python-prompt-toolkit@3.0.5
-
/gnu/store/z0yarar134q6sziqncjdlfg2h2w5b2yh-python-ipython-7.9.0depends
on python-prompt-toolkit@2.0.7
This change seems to be introduced with
32ba87c14fd5e5b54d95211cd9a159d568ce7c67 , which updates
python-prompt-toolkit to 3.0.5 and to prevent python-ipywidgets,
python-jupyter-console and python-widgetsnbextension tests from crashing
builds them with python-prompt-toolkit@2.0.7.
Giacomo
[-- Attachment #2: Type: text/html, Size: 3555 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#41738: Jupyter propagates two different versions of ipython
2020-06-06 15:52 bug#41738: Jupyter propagates two different versions of ipython paul
@ 2020-06-06 18:44 ` david larsson
2020-06-06 18:46 ` david larsson
2020-06-08 6:03 ` Edouard Klein
1 sibling, 1 reply; 5+ messages in thread
From: david larsson @ 2020-06-06 18:44 UTC (permalink / raw)
To: paul; +Cc: bug-Guix, 41738
On 2020-06-06 17:52, paul wrote:
> Hi Guix,
>
> On Guix System
>
> guix ecab53c
> repository URL: https://git.savannah.gnu.org/git/guix.git
> branch: master
> commit: ecab53c320b1584a08f811b17a92bd9a50a50ff3
>
> it's impossible to install jupyter in a new profile because it tries
> to propagate two different versions of python-ipython, you should be
> able to reproduce with:
>
> $ guix package -p /tmp/tmp-profile -i jupyter
> The following package will be installed:
> jupyter 1.0.0
>
> guix package: error: profile contains conflicting entries for
> python-ipython
> guix package: error: first entry: python-ipython@7.9.0
> /gnu/store/z0yarar134q6sziqncjdlfg2h2w5b2yh-python-ipython-7.9.0
> guix package: error: ... propagated from python-ipywidgets@7.5.1
> guix package: error: ... propagated from jupyter@1.0.0
> guix package: error: second entry: python-ipython@7.9.0
> /gnu/store/avmg5jd7kccchxadsd9c7zq0p3shlk3w-python-ipython-7.9.0
> guix package: error: ... propagated from python-qtconsole@4.4.3
> guix package: error: ... propagated from jupyter@1.0.0
> hint: You cannot have two different versions or variants of `jupyter'
> in the same profile.
>
> The conflict seems to be caused because:
>
> - /gnu/store/avmg5jd7kccchxadsd9c7zq0p3shlk3w-python-ipython-7.9.0
> depends on python-prompt-toolkit@3.0.5
>
> - /gnu/store/z0yarar134q6sziqncjdlfg2h2w5b2yh-python-ipython-7.9.0
> depends on python-prompt-toolkit@2.0.7
>
> This change seems to be introduced with
> 32ba87c14fd5e5b54d95211cd9a159d568ce7c67 , which updates
> python-prompt-toolkit to 3.0.5 and to prevent python-ipywidgets,
> python-jupyter-console and python-widgetsnbextension tests from
> crashing builds them with python-prompt-toolkit@2.0.7.
>
> Giacomo
Hi,
I can confirm this, been having the same issue. I worked around it
temporarily by changing some python-packages and adding some to a
temporary channel and guix pulling to the commit just prior to the
32ba87c14 that you mention. In case anyone is helped by it; the channel
is here: https://github.com/methuselah-0/my-guix-packages
Best regards,
David
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#41738: Jupyter propagates two different versions of ipython
2020-06-06 18:44 ` david larsson
@ 2020-06-06 18:46 ` david larsson
2020-06-06 22:35 ` Björn Höfling
0 siblings, 1 reply; 5+ messages in thread
From: david larsson @ 2020-06-06 18:46 UTC (permalink / raw)
To: paul; +Cc: bug-Guix, 41738
On 2020-06-06 20:44, david larsson wrote:
> On 2020-06-06 17:52, paul wrote:
>> Hi Guix,
>>
>> On Guix System
>>
>> guix ecab53c
>> repository URL: https://git.savannah.gnu.org/git/guix.git
>> branch: master
>> commit: ecab53c320b1584a08f811b17a92bd9a50a50ff3
>>
>> it's impossible to install jupyter in a new profile because it tries
>> to propagate two different versions of python-ipython, you should be
>> able to reproduce with:
>>
>> $ guix package -p /tmp/tmp-profile -i jupyter
>> The following package will be installed:
>> jupyter 1.0.0
>>
>> guix package: error: profile contains conflicting entries for
>> python-ipython
>> guix package: error: first entry: python-ipython@7.9.0
>> /gnu/store/z0yarar134q6sziqncjdlfg2h2w5b2yh-python-ipython-7.9.0
>> guix package: error: ... propagated from python-ipywidgets@7.5.1
>> guix package: error: ... propagated from jupyter@1.0.0
>> guix package: error: second entry: python-ipython@7.9.0
>> /gnu/store/avmg5jd7kccchxadsd9c7zq0p3shlk3w-python-ipython-7.9.0
>> guix package: error: ... propagated from python-qtconsole@4.4.3
>> guix package: error: ... propagated from jupyter@1.0.0
>> hint: You cannot have two different versions or variants of `jupyter'
>> in the same profile.
>>
>> The conflict seems to be caused because:
>>
>> - /gnu/store/avmg5jd7kccchxadsd9c7zq0p3shlk3w-python-ipython-7.9.0
>> depends on python-prompt-toolkit@3.0.5
>>
>> - /gnu/store/z0yarar134q6sziqncjdlfg2h2w5b2yh-python-ipython-7.9.0
>> depends on python-prompt-toolkit@2.0.7
>>
>> This change seems to be introduced with
>> 32ba87c14fd5e5b54d95211cd9a159d568ce7c67 , which updates
>> python-prompt-toolkit to 3.0.5 and to prevent python-ipywidgets,
>> python-jupyter-console and python-widgetsnbextension tests from
>> crashing builds them with python-prompt-toolkit@2.0.7.
>>
>> Giacomo
>
> Hi,
> I can confirm this, been having the same issue. I worked around it
> temporarily by changing some python-packages and adding some to a
> temporary channel and guix pulling to the commit just prior to the
> 32ba87c14 that you mention. In case anyone is helped by it; the
> channel is here: https://github.com/methuselah-0/my-guix-packages
>
> Best regards,
> David
And I just noticed, this is basically a duplicate of bug#41729: jupyter
cannot be installed
Best regards,
David
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#41738: Jupyter propagates two different versions of ipython
2020-06-06 18:46 ` david larsson
@ 2020-06-06 22:35 ` Björn Höfling
0 siblings, 0 replies; 5+ messages in thread
From: Björn Höfling @ 2020-06-06 22:35 UTC (permalink / raw)
To: david larsson; +Cc: bug-Guix, paul, 41738
[-- Attachment #1: Type: text/plain, Size: 327 bytes --]
On Sat, 06 Jun 2020 20:46:13 +0200
david larsson <david.larsson@selfhosted.xyz> wrote:
> And I just noticed, this is basically a duplicate of bug#41729:
> jupyter cannot be installed
bug#41729: jupyter cannot be installed
bug#41738: Jupyter propagates two different versions of ipython
Merged 41729 41738.
Björn
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 195 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#41738: Jupyter propagates two different versions of ipython
2020-06-06 15:52 bug#41738: Jupyter propagates two different versions of ipython paul
2020-06-06 18:44 ` david larsson
@ 2020-06-08 6:03 ` Edouard Klein
1 sibling, 0 replies; 5+ messages in thread
From: Edouard Klein @ 2020-06-08 6:03 UTC (permalink / raw)
To: paul; +Cc: 41738
As I said on the other bug, this is my fault, sorry.
I'll try to fix it starting wednesday.
Sorry for the incovenience.
paul writes:
> Hi Guix,
>
> On Guix System
>
> guix ecab53c
> repository URL: https://git.savannah.gnu.org/git/guix.git
> branch: master
> commit: ecab53c320b1584a08f811b17a92bd9a50a50ff3
>
> it's impossible to install jupyter in a new profile because it tries to
> propagate two different versions of python-ipython, you should be able to
> reproduce with:
>
> $ guix package -p /tmp/tmp-profile -i jupyter
> The following package will be installed:
> jupyter 1.0.0
>
> guix package: error: profile contains conflicting entries for python-ipython
> guix package: error: first entry: python-ipython@7.9.0
> /gnu/store/z0yarar134q6sziqncjdlfg2h2w5b2yh-python-ipython-7.9.0
> guix package: error: ... propagated from python-ipywidgets@7.5.1
> guix package: error: ... propagated from jupyter@1.0.0
> guix package: error: second entry: python-ipython@7.9.0
> /gnu/store/avmg5jd7kccchxadsd9c7zq0p3shlk3w-python-ipython-7.9.0
> guix package: error: ... propagated from python-qtconsole@4.4.3
> guix package: error: ... propagated from jupyter@1.0.0
> hint: You cannot have two different versions or variants of `jupyter' in the
> same profile.
>
>
> The conflict seems to be caused because:
>
> -
> /gnu/store/avmg5jd7kccchxadsd9c7zq0p3shlk3w-python-ipython-7.9.0depends on
> python-prompt-toolkit@3.0.5
>
> -
> /gnu/store/z0yarar134q6sziqncjdlfg2h2w5b2yh-python-ipython-7.9.0depends on
> python-prompt-toolkit@2.0.7
>
>
> This change seems to be introduced with 32ba87c14fd5e5b54d95211cd9a159d568ce7c67
> , which updates python-prompt-toolkit to 3.0.5 and to prevent python-ipywidgets,
> python-jupyter-console and python-widgetsnbextension tests from crashing builds
> them with python-prompt-toolkit@2.0.7.
>
>
> Giacomo
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-06-08 6:05 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-06 15:52 bug#41738: Jupyter propagates two different versions of ipython paul
2020-06-06 18:44 ` david larsson
2020-06-06 18:46 ` david larsson
2020-06-06 22:35 ` Björn Höfling
2020-06-08 6:03 ` Edouard Klein
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.