tensorflow / fold

Deep learning with dynamic computation graphs in TensorFlow
Apache License 2.0
1.83k stars 266 forks source link

TensorFlow for Python 3.3 #33

Closed ch3njust1n closed 7 years ago

ch3njust1n commented 7 years ago

Trying to get the follow to work: pip3 install https://storage.googleapis.com/tensorflow_fold/tensorflow_fold-0.0.1-py3-none-linux_x86_64.whl, but seems like there's not support for TensorFlow in Python 3.3. Also there's a typo in the setup. The Python 3.3 instructions says pip, but it should bepip3`. Anyways, can't get this working for Python 3.3 since there doesn't seem to be support for TF in Python3.3.

moshelooks commented 7 years ago

Please follow the instructions carefully and create a virtual environment using "virtualenv -p python3 foo" for python3 like we say. If you do this then once you activate the virtual environment pip will be an alias for pip3. You're right, it does look like TF is dropping support for 3.3 going forward unfortunately.

On Sun, Mar 12, 2017 at 5:18 PM, Justin Chen notifications@github.com wrote:

Trying to get the follow to work: pip3 install https://storage.googleapis.com/tensorflow_fold/ tensorflow_fold-0.0.1-py3-none-linux_x86_64.whl, but seems like there's not support for TensorFlow in Python 3.3. Also there's a typo in the setup. The Python 3.3 instructions says pip, but it should bepip3`. Anyways, can't get this working for Python 3.3 since there doesn't seem to be support for TF in Python3.3.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/tensorflow/fold/issues/33, or mute the thread https://github.com/notifications/unsubscribe-auth/AAsbjg4Pc_EEGb0-oF2wrKGcXgjtMeXlks5rlItggaJpZM4MavA4 .

ch3njust1n commented 7 years ago

Hmm ok thanks