Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install sympy for python34 in windows 8

Tags:

python

sympy

I download sympy-0.7.6. Now it is in download directory. I install python in C drive (c:\Python34). Now how to install the sympy. There is no .exe file in sympy directory. But have a setup.py.

My OS is windows 8.

How I install or use sympy for python 3.4 in windows 8 64 bit system.???

I downloaded the sympy for perform some integration and other mathematical operations.

Please help...

thanks.

like image 694
user3847937 Avatar asked Nov 25 '14 05:11

user3847937


People also ask

Is SymPy included in Python?

SymPy is written entirely in Python. SymPy only depends on mpmath, a pure Python library for arbitrary floating point arithmetic, making it easy to use.

Does Anaconda come SymPy?

SymPy comes pre-installed with the Anaconda distribution of Python. Alternatively, you can install SymPy using the Python package manager pip. The command below installs SymPy into the current environment. You can confirm your SymPy installation by opening up the Python REPL and typing the two commands below.

Does Spyder have SymPy?

Spyder also supports several types of specialized consoles. A Sympy console enables creating and displaying symbolic math expressions right inside Spyder. A Cython console allows you to use the Cython language to speed up your code and call C functions directly from Python.


1 Answers

I successfully installed sympy in window 7 machine from source code.

download the zip from https://github.com/sympy/sympy 

or

git clone https://github.com/sympy/sympy.git 
cd sympy 
python setup.py install
like image 61
hnahak Avatar answered Nov 14 '22 23:11

hnahak