Poppy installation on Windows without Anaconda

my system:win7_X64
python2.7

I installed by the method of this website
https://docs.poppy-project.org/en/installation/install-poppy-softwares.html#install-poppy-software

usr the command"pip install poppy-torso --user -U"
But there is such a mistake, I can not think of a solution:

Running setup.py install for bottle … done
Running setup.py install for tornado … done
Running setup.py install for mpmath … done
Running setup.py install for sympy … done
Running setup.py install for scipy … error
Complete output from command e:\python27\python.exe -u -c “import setuptools
tokenize;file=‘c:\users\ty\appdata\local\temp\pip-build-eem384\scip
\setup.py’;f=getattr(tokenize, ‘open’, open)(file);code=f.read().replace(’
\n’, ‘\n’);f.close();exec(compile(code, file, ‘exec’))” install --record c
users\ty\appdata\local\temp\pip-1_x2xe-record\install-record.txt --single-vers
n-externally-managed --compile --user --prefix=:

。。。。。

Command “e:\python27\python.exe -u -c “import setuptools, tokenize;file=‘c:
\users\ty\appdata\local\temp\pip-build-eem384\scipy\setup.py’;f=getattr(t
okenize, ‘open’, open)(file);code=f.read().replace(’\r\n’, ‘\n’);f.close();e
xec(compile(code, file, ‘exec’))” install --record c:\users\ty\appdata\local
\temp\pip-1_x2xe-record\install-record.txt --single-version-externally-managed -
-compile --user --prefix=” failed with error code 1 in c:\users\ty\appdata\local
\temp\pip-build-eem384\scipy\

In addition, the installation can not use python 3.5? I am more of a use of this

thankyou

It is because you can’t install scipy with pip.
That’s why we recommend to use Anaconda or Miniconda, which have a better integration of binary packages.
If you have already you Python environment in Windows, you can download a Scipy wheel here (download the file which correspond to your python version). You can install it with pip pip install mywheel.whl and try the installation of your creature again.

1 Like