Bonjour. Après avoir installé numpy etc., j'ai essayé d'exécuter le test unitaire.
$ python --version
Python 2.7.11
$ pip install nose
$ python -c "import numpy; print numpy.__version__; numpy.test()"
..................................
----------------------------------------------------------------------
Ran 5931 tests in 22.598s
OK (KNOWNFAIL=5, SKIP=8)
$ python -c "import scipy; print scipy.__version__; scipy.test()"
..................................
$ python -c "import matplotlib; print matplotlib.__version__; matplotlib.test()"
..................................
print numpy.__version__Une partie n'est peut-être pas nécessaire, mais python 3.En x, imprimer(numpy.__version__)Veuillez changer en.
```console
$ pip3 install nose
$ python3 -c "import numpy; print(numpy.__version__); numpy.test()"
$ python3 -c "import scipy; print(scipy.__version__); scipy.test()"
$ python3 -c "import matplotlib; print(matplotlib.__version__); matplotlib.test()"
Recommended Posts