--Je n'utilise pas pyenv, virtualenv ou annaconda.
# | OS/Logiciel/Bibliothèque | version | Utilisation | Remarques |
---|---|---|---|---|
1 | Mac OS X | EI Capitan | Tout | Il fait de son mieux |
2 | Docker | Dernière édition | Tout | |
3 | Python | 2.Série 7 | Apprentissage automatique et partie Web | Je l'ai mis dans Homebrew, pas dans l'existant |
4 | Apache | 2.4 séries | Partie Web | J'utilise un existant |
5 | PHP | 5.Série 6 | Partie collection d'images | Cela peut être dans une autre langue. Je l'ai écrit en Ruby au début, mais je ne pouvais pas bien me connecter à cause des relations proxy, donc... |
6 | NumPy | 1.Série 12 | Fonctionnement de la matrice avec OpenCV | |
7 | OpenCV | 2.4 séries | Détection de visage à partir de l'image | |
8 | TensorFlow | 1.1 système | L'apprentissage en profondeur | |
9 | Flask | 0.Série 12 | Partie Web | Framework Web Python |
10 | WSGI | 0.Série 12 | Partie Web | Je l'ai mis de pip. Si vous le mettez en homebrew, il sera compatible avec Python.... |
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