Pythonで(の.py)を使用すると、簡単でOS情報を取得することができますファイル特定のプラットフォームまたはPythonバージョンに要件を制限する方法は、https://stackoverflow.com/a/35614580/1951176に記述されています。私たちのTensorFlow例えば、それは私がちょうどTensorFlowと、特定の場合には、見つけたとして、それが(他の要件と同様に)requirements.txt
にちょうど
tensorflow
を指定するために働き、Finnally
# Linux, Python 3.5
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.10.0-cp35-cp35m-linux_x86_64.whl; sys_platform == 'linux' and python_version == '3.5'
# Linux, Python 3.4
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.11.0-cp34-cp34m-linux_x86_64.whl; sys_platform == 'linux' and python_version == '3.4'
# Linux, Python 2.7
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.11.0-cp27-none-linux_x86_64.whl; sys_platform == 'linux' and python_version == '2.7'
# Mac, Python 3.4 or 3.5
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.11.0-py3-none-any.whl; sys_platform == 'darwin' and (python_version == '3.4' or python_version == '3.5')
# Mac, Python 2.7
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.11.0-py2-none-any.whl; sys_platform == 'darwin' and python_version == '2.7'
を読んでいました。
http://stackoverflow.com/a/35614580/1951176 – sygi
@sygi thx、これはそうであるようです。 +1してもまだテストしなければならない – alex