Re: [sage-support] Re: No module named extern error

2022-02-12 Thread slelievre


Le samedi 12 février 2022 à 11:36:49 UTC+1, W D Joyner:

>
> Also, you can use the version command: 
>
> sage: version() 
> 'SageMath version 9.3.rc0, Release Date: 2021-03-23' 
>


Or to also get the Python version:
```
sage: print('{}, Python {}.{}.{}'.format(version(), *sys.version_info[:3]))
SageMath version 9.6.beta0, Release Date: 2022-02-06, Python 3.9.10
```

More elaborate command for more concise output:
```
sage: print("SageMath {}, released {}. Python {}.{}.{}."
:   .format(sage.version.version, sage.version.date, 
*sys.version_info[:3]))
SageMath 9.6.beta0, released 2022-02-06. Python 3.9.10.
```

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/ff11d2b6-afd0-4e34-9d7e-8dc9e4ee927dn%40googlegroups.com.


Re: [sage-support] Re: No module named extern error

2022-02-12 Thread David Joyner
On Sat, Feb 12, 2022 at 5:33 AM slelievre  wrote:
>
> What SageMath versions do you have at home and at work?
> To get the version information, print the Sage banner:
>
> sage: sage.misc.banner.SAGE_BANNER = ''
> sage: banner()
>

A;lso, you can use the version command:

sage: version()
'SageMath version 9.3.rc0, Release Date: 2021-03-23'

> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/sage-support/be175aab-15be-4c5e-a671-dd1f3298563dn%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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/CAEQuuAWvrvkwZpJY3JzW3XLcbHt8YZoFovyOg2sWM-Uw-QBtFQ%40mail.gmail.com.


[sage-support] Re: No module named extern error

2022-02-12 Thread slelievre
What SageMath versions do you have at home and at work?
To get the version information, print the Sage banner:

sage: sage.misc.banner.SAGE_BANNER = ''
sage: banner()

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/be175aab-15be-4c5e-a671-dd1f3298563dn%40googlegroups.com.