--Nicht python3. Es ist auch nicht opencv3.
# | OS/Software/Bibliothek | Ausführung | Verwenden | Bemerkungen |
---|---|---|---|---|
1 | Mac OS X | EI Capitan | Alles | Er gibt sein Bestes |
2 | Docker | Neueste Ausgabe | Alles | |
3 | Python | 2.7er Serie | Maschinelles Lernen und Webpart | Ich habe es in Homebrew abgelegt, nicht in das vorhandene |
4 | Apache | 2.4er Serie | Webpart | Ich verwende eine vorhandene |
5 | PHP | 5.6er Serie | Bildersammlungsteil | Es kann in einer anderen Sprache sein. Ich habe es zuerst in Ruby geschrieben, konnte mich aber aufgrund von Proxy-Beziehungen nicht gut verbinden... |
6 | NumPy | 1.12 Serien | Matrixbetrieb mit OpenCV | |
7 | OpenCV | 2.4er Serie | Gesichtserkennung aus dem Bild | |
8 | TensorFlow | 1.1 System | Tiefes Lernen | |
9 | Flask | 0.12 Serien | Webpart | Python-Webframework |
10 | WSGI | 0.12 Serien | Webpart | Ich habe es von Pip reingelegt. Wenn Sie es in Homebrew einfügen, ist es mit Python kompatibel.... |
brew update
tap
brew tap homebrew/python
brew tap homebrew/science
brew install python
which python
/usr/local/bin/python ※1
python
Python 2.7.13 (default, Apr 4 2017, 08:46:44)
[GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.42.1)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
brew install numpy
brew install opencv
Python 2.7.13 (default, Apr 4 2017, 08:46:44)
[GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.42.1)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2
>>> cv2.__version__
'2.4.13.2'
>>>
pip install --ignore-installed --upgrade \
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.1.0-py2-none-any.whl
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> print(sess.run(hello))
pip install Flask
pip install mod_wsgi
.zshrc
if [ -d $(brew --prefix)/lib/python2.7/site-packages ];then
export PYTHONPATH=$(brew --prefix)/lib/python2.7/site-packages:$PYTHONPAT
fi
Recommended Posts