Install sympy for python34 on Windows 8

Loading sympy-0.7.6 . Now he is in download directory

. I am installing python in C drive

(c:\Python34).

Now how to install sympy

. There is sympy

no file in the directory .exe

. But have setup.py .

My OS is windows 8.

      

How do I install or use sympy for python 3.4 on a Windows 8 64bit system .

I have uploaded sympy

someintegration and other mathematical operations.

Please, help...

thank.

+3


source to share


3 answers


I have successfully installed sympy in a windows 7 machine from source.

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

      



or

git clone https://github.com/sympy/sympy.git 
cd sympy 
python setup.py install

      

+2


source


You need to run python setup.py install

in the sympy folder you downloaded (in the download directory). Installation instructions are at https://github.com/sympy/sympy#installation



This will work with python3 too. But I think you are facing a problem when running python commands. You must be able to run python to install and use Sympy.

+1


source


Another option is to install Anaconda , which ships with SymPy (as well as many other useful Python and IPython libraries). The latest version of Anaconda comes with an older version, so you need to open a command prompt after installing it and run

conda update sympy

      

to get the latest version.

0


source







All Articles