#8051: SageNB 0.7.x
---------------------------------------------+------------------------------
Reporter: mpatel | Owner: mpatel
Type: defect | Status: needs_review
Priority: major | Milestone: sage-4.3.2
Component: notebook | Keywords:
Author: Mitesh Patel | Upstream: N/A
Reviewer: Robert Mařík, Minh Van Nguyen | Merged:
Work_issues: |
---------------------------------------------+------------------------------
Comment(by mpatel):
We install the sagenb package with
[http://peak.telecommunity.com/DevCenter/setuptools setuptools]
([http://pypi.python.org/pypi/setuptools PyPI]), which updates
`SAGE_LOCAL/lib/python/site-packages/easy-install.pth`. This file
contains paths prepended to `sys.path` on startup.
You can query the installed version with
{{{
#!python
sage: from sagenb.misc.misc import SAGENB_VERSION
sage: SAGENB_VERSION
}}}
which is essentially
{{{
#!python
sage: from pkg_resources import Requirement, working_set
sage: w = working_set.find(Requirement.parse('sagenb'))
sage: w.version
}}}
Moreover, `w.location` gives the install directory.
I'm checking the fonts now...
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/8051#comment:29>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.