在Windows 8中安装python34的sympy

时间:2014-11-25 05:22:21

标签: python sympy

我下载 sympy-0.7.6 。现在它在download directory。我在C drive (c:\Python34).中安装 python 现在如何安装sympy.exe目录中没有sympy个文件。但是要有 setup.py

My OS is windows 8.

如何在Windows 8 64位系统中安装或使用 sympy for python 3.4 。???

我已下载sympy以执行某些integration and other mathematical operations.

请帮忙......

感谢。

3 个答案:

答案 0 :(得分:3)

我从源代码中成功在window 7机器上安装了sympy。

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

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

答案 1 :(得分:1)

您必须在已下载的sympy文件夹中运行python setup.py install(在您的下载目录中)。安装说明位于https://github.com/sympy/sympy#installation

这也适用于python3。 但我认为你在运行python命令时遇到问题。您必须能够运行python来安装和使用Sympy。

答案 2 :(得分:0)

另一种选择是安装SymPy附带的Anaconda(以及大量其他有用的Python库和IPython笔记本)。最新版本的Anaconda附带旧版本,因此您需要在安装并运行后打开命令提示符

conda update sympy

获取最新版本。