![]() |
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & 6
Quote:
And many thanks for getting this running on our awesome devices. I am more of a Maple user but for the quick mobile tasks this sympy is awesome. Thanks |
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & 6
Quote:
|
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & 6
will you be porting these awesome apps to jolla?
|
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & 6
Quote:
|
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & 6
SymPy 0.7.5 (22/02/2014) is now available for Sailfish (& Mer & Nemo) at OpenRepos.net.
To install SymPy 0.7.5 on Sailfish, see the 1st post. Screenshot of Terminal running IPython (2.0.0) with SymPy 0.7.5 on Nexus 4 with Sailfish OS 1.0.5.16. Mathematical symbols are not show correctly due to lack of full Unicode support. A workaround is to disable Unicode with "init_printing (use_unicode=false)". http://www.RobertoColistete.net/symp...SailfishOS.jpg Nexus 4 running SymPy with IPython 2.1.0 Notebook interface on Webcat web browser : http://www.robertocolistete.net/ipyt...SailfishOS.jpg |
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & MeeGo Harmattan & Sailfish
SymPy 0.7.5 (22/02/2014) for Python 3 is also available for Sailfish (& Mer & Nemo) at OpenRepos.net.
About SymPy 0.7.5 for Python 2.7 on Sailfish, see the post above. |
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & MeeGo Harmattan & Sailfish
Added SymPy for Sailfish in 1st post, with how to install, screenshots, etc.
|
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & MeeGo Harmattan & Sailfish
SymPy 0.7.4.1 (15/12/2013) and SymPy 0.7.5 (22/02/2014) are now available for MeeGo Harmattan at OpenRepos.net.
To install SymPy 0.7.5 on MeeGo Harmattan, see the 1st post. |
I open the Py notebook. But it says no browser runable...
What does it mean n how to run it!? |
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & MeeGo Harmattan & Sailfish
:D Just open grob
|
Quote:
|
Iv try open grob.
The same notice [NotebookApp] Using existing profile dir: u'/home/user/.config/ipython/profile_default' [NotebookApp] Serving notebooks from /home/user [NotebookApp] The IPython Notebook is running at: http://127.0.0.1:8888/ [NotebookApp] Use Control-C to stop this server and shut down all kernels. [NotebookApp] No web browser found: could not locate runnable browser. |
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & MeeGo Harmattan & Sailfish
Quote:
Quote:
|
[HELP]
Everytime I Try %pylab inline, i always got Error message... What I have lost!? Please help #N9 |
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & MeeGo Harmattan & Sailfish
Quote:
|
Quote:
I have tried those tutorial.... Can Anyone give me a link for clear install MatPlotLib and use this SymPy!? Pleaseeee... :( |
02:32:54 MSK 2012 armv7l GNU/Linux
In [2]: %pylab inline --------------------------------------------------------------------------- ImportError Traceback (most recent call last) <ipython-input-2-550caa57204a> in <module>() ----> 1 get_ipython().magic(u'pylab inline') /usr/lib/pymodules/python2.6/IPython/core/interactiveshell.pyc in magic(self, arg_s) 2134 magic_name, _, magic_arg_s = arg_s.partition(' ') 2135 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC) -> 2136 return self.run_line_magic(magic_name, magic_arg_s) 2137 2138 #------------------------------------------------------------------------- /usr/lib/pymodules/python2.6/IPython/core/interactiveshell.pyc in run_line_magic(self, magic_name, line) 2060 args.append(sys._getframe(stack_depth).f_locals) 2061 with self.builtin_trap: -> 2062 result = fn(*args) 2063 return result 2064 /usr/lib/pymodules/python2.6/IPython/core/magics/pylab.pyc in pylab(self, parameter_s) /usr/lib/pymodules/python2.6/IPython/core/magic.pyc in <lambda>(f, *a, **k) 189 # but it's overkill for just that one bit of state. 190 def magic_deco(arg): --> 191 call = lambda f, *a, **k: f(*a, **k) 192 193 if callable(arg): /usr/lib/pymodules/python2.6/IPython/core/magics/pylab.pyc in pylab(self, parameter_s) 86 import_all_status = True 87 ---> 88 self.shell.enable_pylab(parameter_s, import_all=import_all_status) /usr/lib/pymodules/python2.6/IPython/core/interactiveshell.pyc in enable_pylab(self, gui, import_all) 2782 ns = {} 2783 try: -> 2784 gui = pylab_activate(ns, gui, import_all, self) 2785 except KeyError: 2786 error("Backend %r not supported" % gui) /usr/lib/pymodules/python2.6/IPython/core/pylabtools.pyc in pylab_activate(user_ns, gui, import_all, shell) 328 """ 329 gui, backend = find_gui_and_backend(gui) --> 330 activate_matplotlib(backend) 331 import_pylab(user_ns, import_all) 332 if shell is not None: /usr/lib/pymodules/python2.6/IPython/core/pylabtools.pyc in activate_matplotlib(backend) 221 # This must be imported last in the matplotlib series, after 222 # backend/interactivity choices have been made --> 223 import matplotlib.pylab as pylab 224 225 # XXX For now leave this commented out, but depending on discussions with /usr/lib/pymodules/python2.6/matplotlib/pylab.py in <module>() 220 silent_list, iterable, dedent 221 --> 222 from matplotlib import mpl # pulls in most modules 223 224 from matplotlib.dates import date2num, num2date,\ /usr/lib/pymodules/python2.6/matplotlib/mpl.py in <module>() 1 from matplotlib import artist 2 from matplotlib import axis ----> 3 from matplotlib import axes 4 from matplotlib import cbook 5 from matplotlib import collections /usr/lib/pymodules/python2.6/matplotlib/axes.py in <module>() 17 import matplotlib.colors as mcolors 18 import matplotlib.contour as mcontour ---> 19 import matplotlib.dates as _ # <-registers a date unit converter 20 from matplotlib import docstring 21 import matplotlib.font_manager as font_manager /usr/lib/pymodules/python2.6/matplotlib/dates.py in <module>() 120 import matplotlib.ticker as ticker 121 --> 122 from dateutil.rrule import rrule, MO, TU, WE, TH, FR, SA, SU, YEARLY, \ 123 MONTHLY, WEEKLY, DAILY, HOURLY, MINUTELY, SECONDLY 124 from dateutil.relativedelta import relativedelta ImportError: No module named dateutil.rrule In [ ]: I get those message when i type %pylab inline |
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & MeeGo Harmattan & Sailfish
Quote:
|
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & MeeGo Harmattan & Sailfish
SymPy 0.7.6.1 (03/09/2015) is now available for Sailfish (& Mer & Nemo) at OpenRepos.net.
Python 3 version of SymPy 0.7.6.1 is also available in OpenRepos.net. To install SymPy 0.7.6.1 on Sailfish, see the 1st post. Screenshot of Terminal running IPython (2.4.1) with SymPy 0.7.6.1 (for Python 2.7.9) on Jolla C with Sailfish OS 2.0.2.48. http://www.RobertoColistete.net/symp...al-ipython.jpg |
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & MeeGo Harmattan & Sailfish
Only in interactive mode (using e.g., "isympy") that SymPy >= 0.7.3 automatically loads PyLab (NumPy & MatPlotLib).
Sailfish 2.0.2.48 with Python 2.7.9, IPython 2.3.0, NumPy 1.9.1 and MatPlotLib 1.4.1. Benchmarks of SymPy 0.7.5 : * Jolla (1), 2-core Krait @ 1.5 GHz : - "from sympy import *" : 2.0s; - "integrate(x**5/(alpha*x**2+beta)**2,x)" : 3.4s. * Jolla C, 4-core Cortex A7 @ 1.3 GHz : - "from sympy import *" : 2.0s; - "integrate(x**5/(alpha*x**2+beta)**2,x)" : 3.2s. * Jolla Tablet, 4-core Atom Z3735F @ 1.33 GHz : - "from sympy import *" : 1.1s; - "integrate(x**5/(alpha*x**2+beta)**2,x)" : 1.7s. Benchmarks of SymPy 0.7.6.1 : * Jolla (1), 2-core Krait @ 1.5 GHz : - "from sympy import *" : 2.2s; - isympy in X Terminal : 5.7s (with PyLab), 4.8s (without MatPlotLib), 4.5s (without PyLab); - "integrate(x**5/(alpha*x**2+beta)**2,x)" : 5.0s. * Jolla C, 4-core Cortex A7 @ 1.3 GHz : - "from sympy import *" : 2.2s; - isympy in X Terminal : 5.9s (with PyLab), 4.5s (without MatPlotLib), 4.2s (without PyLab); - "integrate(x**5/(alpha*x**2+beta)**2,x)" : 4.7s. * Jolla Tablet, 4-core Atom Z3735F @ 1.33 GHz : - "from sympy import *" : 1.1s; - isympy in X Terminal : 3.3s (with PyLab), 2.6s (without MatPlotLib), 2.5s (without PyLab); - "integrate(x**5/(alpha*x**2+beta)**2,x)" : 2.5s. |
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & MeeGo Harmattan & Sailfish
funny thing, registered just to post this. anyway...
first of all, you did a great job. really enjoying using sympy. secondly, i have a problem, there are no numbers or anything else on plot except curve itself and axis. i've tried everything but it didn't help. and finally, i really need lie algebra module. is there anyway to upgrade to sympy 1.1 or something like that? i'm using n900 with maemo 5. thank you in advance for answer! |
Re: [Announce] SymPy (Computer Algebra System) for Maemo 4 & 5 & MeeGo Harmattan & Sailfish
Quote:
Quote:
Quote:
|
All times are GMT. The time now is 04:57. |
vBulletin® Version 3.8.8