-
Notifications
You must be signed in to change notification settings - Fork 217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unable to install tensorflow==1.4.1 for python 2.7 #4
Comments
Was able to solve it, by opening every file with encoding="utf8" in the code |
can you please tell me what do you mean by 'opening every file with encoding="utf8"? |
the encoding of the file caused an issue UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position 2776: character maps to |
The file encoding in main.py is already in utf-8 coding...where do we have to change? |
I kinda changed in every file . While opening in write mode added a
encoding = utf8
On Aug 16, 2018 18:39, "DHRTHI NANDA" <[email protected]> wrote:
The file encoding in main.py is already in utf-8 coding...where do we have
to change?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#4 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ANZqbeLTD4vig8Z15GapmdOhouEoBCepks5uRW8XgaJpZM4VXlEJ>
.
|
use python 3+ but convert each file using (2to3 -w filename) command. |
It is mentioned in the code that it is written in Tensorflow==1.4.1 in Python 2.7
I am unable to install Tensorflow==1.4.1 in Python 2.7 Environment. I am able to install Tensorflow only in python 3.5 and above. When I try to run main.py with I facing several Python 2.7 to 3.6 compatibility issues
Error While installing Tensorflow in Python 2.7
My OS: Windows 10
Anaconda 64 bit Environment
Tensorflowversion 1.4
Python 3.6.5
Error with Python 3.6.5
The text was updated successfully, but these errors were encountered: