Re: [sage-support] Sage Crash Report

2019-10-13 Thread Dima Pasechnik
Dear Dave,

On Mon, Oct 14, 2019 at 1:03 AM dave dobbs  wrote:
>
> OS: Xubuntu 18.04.1 64-bit
> downloaded from SAGE: sage-8.9-Ubuntu_16.04-x86_64.tar.bz2

wrong version - notice that you are running Ubuntu 18.04, and you're
trying a tarball fot 16.04.

Tarball for 18.04 is not ready yet, I think.

HTH
Dima

> decompressed with tar -xjf sage-8.9...
>
> I did a cd to the uncompressed folder, SageMath, and issued the command:
> ./sage
>
> It then went thru a long sequence of patches, put up the following msg box:
> ┌┐
> │ SageMath version 8.9, Release Date: 2019-09-29  
> │
> │ Using Python 2.7.15. Type "help()" for help.
> │
> └┘
> and then issued the Oops message.
>
> As I recall I went through the very same sequence with SAGE 8.8 & it's worked 
> just fine...Dave
>
> --
> 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/CADw54_ZY-wZjmYoUTeTvnjx7OCzP7yrR0d7HyeRRXVYzTFT94g%40mail.gmail.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/CAAWYfq2zQ5bEwZK3WWfwAUs2DSnW%3DkcCUD1GSXbNYp7%2B8sRj5A%40mail.gmail.com.


[sage-support] Sage Crash Report

2019-10-13 Thread dave dobbs
OS: Xubuntu 18.04.1 64-bit
downloaded from SAGE: sage-8.9-Ubuntu_16.04-x86_64.tar.bz2
decompressed with tar -xjf sage-8.9...

I did a cd to the uncompressed folder, SageMath, and issued the command:
./sage

It then went thru a long sequence of patches, put up the following msg box:
┌┐
│ SageMath version 8.9, Release Date: 2019-09-29
  │
│ Using Python 2.7.15. Type "help()" for help.
  │
└┘
and then issued the Oops message.

As I recall I went through the very same sequence with SAGE 8.8 & it's
worked just fine...Dave

-- 
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/CADw54_ZY-wZjmYoUTeTvnjx7OCzP7yrR0d7HyeRRXVYzTFT94g%40mail.gmail.com.
***

IPython post-mortem report

{'commit_hash': u'033ab93c7',
 'commit_source': 'installation',
 'default_encoding': 'UTF-8',
 'ipython_path': 
'/home/dave/sage-8.9/local/lib/python2.7/site-packages/IPython',
 'ipython_version': '5.8.0',
 'os_name': 'posix',
 'platform': 'Linux-5.0.0-31-generic-x86_64-with-debian-buster-sid',
 'sys_executable': '/home/dave/sage-8.9/local/bin/python2',
 'sys_platform': 'linux2',
 'sys_version': '2.7.15 (default, Oct  4 2019, 05:22:55) \n[GCC 7.4.0]'}

***



***

Crash traceback:

---
---
ImportErrorPython 2.7.15: /home/dave/sage-8.9/local/bin/python2
   Sun Oct 13 16:50:08 2019
A problem occurred executing Python code.  Here is the sequence of function
calls leading up to the error, with the most recent (innermost) call last.
/home/dave/sage-8.9/src/bin/sage-ipython in ()
  1 #!/usr/bin/env sage-python23
  2 # -*- coding: utf-8 -*-
  3 """
  4 Sage IPython startup script.
  5 """
  6 
  7 # Display startup banner. Do this before anything else to give the user
  8 # early feedback that Sage is starting.
  9 from sage.misc.banner import banner
 10 banner()
 11 
 12 from sage.repl.interpreter import SageTerminalApp
 13 
 14 app = SageTerminalApp.instance()
---> 15 app.initialize()
global app.initialize = >
 16 app.start()


 in initialize(self=, argv=None)

/home/dave/sage-8.9/local/lib/python2.7/site-packages/traitlets/config/application.py
 in catch_config_error(method=, 
app=, *args=(None,), **kwargs={})
 72 TRAITLETS_APPLICATION_RAISE_CONFIG_FILE_ERROR = False
 73 else:
 74 raise ValueError("Unsupported value for environment variable: 
'TRAITLETS_APPLICATION_RAISE_CONFIG_FILE_ERROR' is set to '%s' which is none of 
 {'0', '1', 'false', 'true', ''}."% _envvar )
 75 
 76 
 77 @decorator
 78 def catch_config_error(method, app, *args, **kwargs):
 79 """Method decorator for catching invalid config 
(Trait/ArgumentErrors) during init.
 80 
 81 On a TraitError (generally caused by bad config), this will print 
the trait's
 82 message, and exit the app.
 83 
 84 For use on init methods, to prevent invoking excepthook on invalid 
input.
 85 """
 86 try:
---> 87 return method(app, *args, **kwargs)
method = 
app = 
args = (None,)
kwargs = {}
 88 except (TraitError, ArgumentError) as e:
 89 app.print_help()
 90 app.log.fatal("Bad config encountered during initialization:")
 91 app.log.fatal(str(e))
 92 app.log.debug("Config at the time: %s", app.config)
 93 app.exit(1)
 94 
 95 
 96 class ApplicationError(Exception):
 97 pass
 98 
 99 
100 class LevelFormatter(logging.Formatter):
101 """Formatter with additional `highlevel` record
102 

/home/dave/sage-8.9/local/lib/python2.7/site-packages/IPython/terminal/ipapp.py 
in initialize(self=, argv=None)
301 
302 return super(TerminalIPythonApp, self).parse_command_line(argv)
303 
304 @catch_config_error
305 def initialize(self, argv=None):
306 """Do actions after construct, but before starting the app."""
307 super(TerminalIPythonApp, self).initialize(argv)
308 if self.subapp is not Non