--
You received this message because you are subscribed to the Google Groups "sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sage-support...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sage-support/99bb367f-7564-4736-804c-5d942b1f1773n%40googlegroups.com.
You can just load sage in ipython:./sage --ipythonand at ipython prompt dofrom sage.all import *
(note this does not load sage's preparser, i.e. you won't be able to use ^ instead of **, etc)
On Tuesday, May 18, 2021 at 2:52:04 PM UTC+8 dim...@gmail.com wrote:You can just load sage in ipython:./sage --ipythonand at ipython prompt dofrom sage.all import *Really, it does the trick.(note this does not load sage's preparser, i.e. you won't be able to use ^ instead of **, etc)Thank you. When using the `--ipython` option to call sage, can I still have the magical function of the sage at the same time?
--Regards,HYOn Tue, 18 May 2021, 06:27 Hongyi Zhao, <hongy...@gmail.com> wrote:I want to obtain the similar behavior in sage for pretty printing as in ipython. Any hints will be highly appreciated.Regards,HY--
You received this message because you are subscribed to the Google Groups "sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sage-support...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sage-support/99bb367f-7564-4736-804c-5d942b1f1773n%40googlegroups.com.
You received this message because you are subscribed to the Google Groups "sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sage-support...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sage-support/7c3b1bad-afd2-4da0-9748-c6c9dc710204n%40googlegroups.com.
On Tue, 18 May 2021, 10:38 Hongyi Zhao, <hongy...@gmail.com> wrote:On Tuesday, May 18, 2021 at 2:52:04 PM UTC+8 dim...@gmail.com wrote:You can just load sage in ipython:./sage --ipythonand at ipython prompt dofrom sage.all import *Really, it does the trick.(note this does not load sage's preparser, i.e. you won't be able to use ^ instead of **, etc)Thank you. When using the `--ipython` option to call sage, can I still have the magical function of the sage at the same time?all what sage --ipython does is running a iPython which has sage modules available.some Sage magic is actually iPython, afaik.
On Tuesday, May 18, 2021 at 6:31:08 PM UTC+8 dim...@gmail.com wrote:On Tue, 18 May 2021, 10:38 Hongyi Zhao, <hongy...@gmail.com> wrote:On Tuesday, May 18, 2021 at 2:52:04 PM UTC+8 dim...@gmail.com wrote:You can just load sage in ipython:./sage --ipythonand at ipython prompt dofrom sage.all import *Really, it does the trick.(note this does not load sage's preparser, i.e. you won't be able to use ^ instead of **, etc)Thank you. When using the `--ipython` option to call sage, can I still have the magical function of the sage at the same time?all what sage --ipython does is running a iPython which has sage modules available.some Sage magic is actually iPython, afaik.But, as you have told, not all, say, for power calculation, ^ sign only works in sage.
----Regards,HYOn Tue, 18 May 2021, 06:27 Hongyi Zhao, <hongy...@gmail.com> wrote:I want to obtain the similar behavior in sage for pretty printing as in ipython. Any hints will be highly appreciated.Regards,HY--
You received this message because you are subscribed to the Google Groups "sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sage-support...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sage-support/99bb367f-7564-4736-804c-5d942b1f1773n%40googlegroups.com.
You received this message because you are subscribed to the Google Groups "sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sage-support...@googlegroups.com.To view this discussion on the web visit https://groups.google.com/d/msgid/sage-support/7c3b1bad-afd2-4da0-9748-c6c9dc710204n%40googlegroups.com.
You received this message because you are subscribed to the Google Groups "sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sage-support...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sage-support/8db460ee-9c2c-449f-97c9-e13695a82dc3n%40googlegroups.com.
On Tue, 18 May 2021, 14:36 Hongyi Zhao, <hongy...@gmail.com> wrote:On Tuesday, May 18, 2021 at 6:31:08 PM UTC+8 dim...@gmail.com wrote:On Tue, 18 May 2021, 10:38 Hongyi Zhao, <hongy...@gmail.com> wrote:On Tuesday, May 18, 2021 at 2:52:04 PM UTC+8 dim...@gmail.com wrote:You can just load sage in ipython:./sage --ipythonand at ipython prompt dofrom sage.all import *Really, it does the trick.(note this does not load sage's preparser, i.e. you won't be able to use ^ instead of **, etc)Thank you. When using the `--ipython` option to call sage, can I still have the magical function of the sage at the same time?all what sage --ipython does is running a iPython which has sage modules available.some Sage magic is actually iPython, afaik.But, as you have told, not all, say, for power calculation, ^ sign only works in sage.Indeed, that is what I said - you have iPython magic, yes, but not Sage's syntax extensions. (you can still explicitly call Sage's preparser to convert Sage code into Python)
On Wed, May 19, 2021 at 9:53 AM Hongyi Zhao <hongy...@gmail.com> wrote:
>
>
>
> On Tuesday, May 18, 2021 at 9:53:44 PM UTC+8 dim...@gmail.com wrote:
>>
>>
>>
>> On Tue, 18 May 2021, 14:36 Hongyi Zhao, <hongy...@gmail.com> wrote:
>>>
>>>
>>>
>>> On Tuesday, May 18, 2021 at 6:31:08 PM UTC+8 dim...@gmail.com wrote:
>>>>
>>>>
>>>>
>>>> On Tue, 18 May 2021, 10:38 Hongyi Zhao, <hongy...@gmail.com> wrote:
>>>>>
>>>>>
>>>>>
>>>>> On Tuesday, May 18, 2021 at 2:52:04 PM UTC+8 dim...@gmail.com wrote:
>>>>>>
>>>>>> You can just load sage in ipython:
>>>>>>
>>>>>> ./sage --ipython
>>>>>>
>>>>>> and at ipython prompt do
>>>>>>
>>>>>> from sage.all import *
>>>>>
>>>>>
>>>>> Really, it does the trick.
>>>>>
>>>>>>
>>>>>>
>>>>>> (note this does not load sage's preparser, i.e. you won't be able to use ^ instead of **, etc)
>>>>>
>>>>>
>>>>> Thank you. When using the `--ipython` option to call sage, can I still have the magical function of the sage at the same time?
>>>>
>>>>
>>>> all what sage --ipython does is running a iPython which has sage modules available.
>>>>
>>>> some Sage magic is actually iPython, afaik.
>>>
>>>
>>> But, as you have told, not all, say, for power calculation, ^ sign only works in sage.
>>
>>
>> Indeed, that is what I said - you have iPython magic, yes, but not Sage's syntax extensions. (you can still explicitly call Sage's preparser to convert Sage code into Python)
>
>
> How to do that? What's the exact code/command?
look up docs on
preparse
and
preparser