On Tuesday, 13 October 2015 15:47:43 UTC+2, Dennis Christen wrote: > > Hi everyone > > I am now to programming on Raspberry Pi and I would like to solve > equations directly on the Raspberry Pi as part of a project I am currently > working on. However I am not quite sure if I have to install Sympy or if it > is already installed as a library on the Raspberry Pi. >
to find out whether it is, open the terminal and run: $ python -c "import sympy" if that doesn't print an error message it's there already. If an error message is printed, have a look here: http://docs.sympy.org/latest/install.html If you have pip installed you may also try: $ pip install --user sympy -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/5ae22d88-0d58-4bf5-b175-b03c0ba0663e%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
