Install TensorFlow with Python3 on Ubuntu 16.04.whl is not a supported wheel on this platformcant install python3 on ubuntuQuestion about python3 under 16.04How to install firefoxdriver webdriver for python3 selenium on ubuntu?Can't install python3-pipPip installing always results in errorCronJob Not working 16.04 with Python3Cannot install tensorflow with pip3, switches to python2Fix Python3 upgrade in Ubuntu 16.04How to use python3 and still be able to use tensorflow?Error While Installing IBM Watson TTS
How do conventional missiles fly?
Is it inappropriate for a student to attend their mentor's dissertation defense?
What reasons are there for a Capitalist to oppose a 100% inheritance tax?
How can saying a song's name be a copyright violation?
How badly should I try to prevent a user from XSSing themselves?
iPad being using in wall mount battery swollen
Is it possible to create a QR code using text?
Different meanings of こわい
What is a romance in Latin?
What does the expression "A Mann!" means
Avoiding the "not like other girls" trope?
Examples of smooth manifolds admitting inbetween one and a continuum of complex structures
Forgetting the musical notes while performing in concert
Do scales need to be in alphabetical order?
Is it acceptable for a professor to tell male students to not think that they are smarter than female students?
How to prevent "they're falling in love" trope
Is there a hemisphere-neutral way of specifying a season?
Why didn't Boeing produce its own regional jet?
Why can't we play rap on piano?
What are some good books on Machine Learning and AI like Krugman, Wells and Graddy's "Essentials of Economics"
Little known, relatively unlikely, but scientifically plausible, apocalyptic (or near apocalyptic) events
I would say: "You are another teacher", but she is a woman and I am a man
Watching something be piped to a file live with tail
Zip/Tar file compressed to larger size?
Install TensorFlow with Python3 on Ubuntu 16.04
.whl is not a supported wheel on this platformcant install python3 on ubuntuQuestion about python3 under 16.04How to install firefoxdriver webdriver for python3 selenium on ubuntu?Can't install python3-pipPip installing always results in errorCronJob Not working 16.04 with Python3Cannot install tensorflow with pip3, switches to python2Fix Python3 upgrade in Ubuntu 16.04How to use python3 and still be able to use tensorflow?Error While Installing IBM Watson TTS
When I try to install tensorflow package with pip3 on Ubuntu 16.04 I obtained this error message:
The directory '/home/federico/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/home/federico/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
tensorflow-0.7.1-cp34-none-linux_x86_64.whl is not a supported wheel on this platform.
How I can fix the problem?
16.04 python3
add a comment |
When I try to install tensorflow package with pip3 on Ubuntu 16.04 I obtained this error message:
The directory '/home/federico/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/home/federico/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
tensorflow-0.7.1-cp34-none-linux_x86_64.whl is not a supported wheel on this platform.
How I can fix the problem?
16.04 python3
I'm also getting this error while installing tensorflow. You can try installing from sources to circumvent this.
– Nitin Kashyap
May 9 '16 at 5:51
add a comment |
When I try to install tensorflow package with pip3 on Ubuntu 16.04 I obtained this error message:
The directory '/home/federico/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/home/federico/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
tensorflow-0.7.1-cp34-none-linux_x86_64.whl is not a supported wheel on this platform.
How I can fix the problem?
16.04 python3
When I try to install tensorflow package with pip3 on Ubuntu 16.04 I obtained this error message:
The directory '/home/federico/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/home/federico/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
tensorflow-0.7.1-cp34-none-linux_x86_64.whl is not a supported wheel on this platform.
How I can fix the problem?
16.04 python3
16.04 python3
edited May 6 '16 at 9:11
Videonauth
24.8k1273102
24.8k1273102
asked May 6 '16 at 9:03
Federico MaglianiFederico Magliani
4316
4316
I'm also getting this error while installing tensorflow. You can try installing from sources to circumvent this.
– Nitin Kashyap
May 9 '16 at 5:51
add a comment |
I'm also getting this error while installing tensorflow. You can try installing from sources to circumvent this.
– Nitin Kashyap
May 9 '16 at 5:51
I'm also getting this error while installing tensorflow. You can try installing from sources to circumvent this.
– Nitin Kashyap
May 9 '16 at 5:51
I'm also getting this error while installing tensorflow. You can try installing from sources to circumvent this.
– Nitin Kashyap
May 9 '16 at 5:51
add a comment |
2 Answers
2
active
oldest
votes
The issue is that Ubuntu 16 uses Python3.5 but Tensorflow only provides a wheel for Python 3.4 (indicated by 'cp34' in "tensorflow-0.7.1-cp34-none-linux_x86_64.whl"). Luckily the Wheel is actually compatible with Python 3.5, so you don't need to compile from source.
You need to download the wheel, rename it to prevent the python 3.4 check from failing, and then install by passing the renamed file to pip.
For the current version of Tensorflow (peeps in the future, check the website for the latest version and adapt commands below if necessary) run:
wget https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl
mv tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl tensorflow-0.8.0-cp35-none-linux_x86_64.whl
pip install tensorflow-0.8.0-cp35-none-linux_x86_64.whl
Python has "wheels" and "eggs", but is this what you meant by "peep"?
– nobar
Jun 1 '16 at 0:53
add a comment |
use pip --- for python2
pip3 -- for python3
recommencement to use sudo
pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.10.0-cp35-cp35m-linux_x86_64.whl
New contributor
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f768372%2finstall-tensorflow-with-python3-on-ubuntu-16-04%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The issue is that Ubuntu 16 uses Python3.5 but Tensorflow only provides a wheel for Python 3.4 (indicated by 'cp34' in "tensorflow-0.7.1-cp34-none-linux_x86_64.whl"). Luckily the Wheel is actually compatible with Python 3.5, so you don't need to compile from source.
You need to download the wheel, rename it to prevent the python 3.4 check from failing, and then install by passing the renamed file to pip.
For the current version of Tensorflow (peeps in the future, check the website for the latest version and adapt commands below if necessary) run:
wget https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl
mv tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl tensorflow-0.8.0-cp35-none-linux_x86_64.whl
pip install tensorflow-0.8.0-cp35-none-linux_x86_64.whl
Python has "wheels" and "eggs", but is this what you meant by "peep"?
– nobar
Jun 1 '16 at 0:53
add a comment |
The issue is that Ubuntu 16 uses Python3.5 but Tensorflow only provides a wheel for Python 3.4 (indicated by 'cp34' in "tensorflow-0.7.1-cp34-none-linux_x86_64.whl"). Luckily the Wheel is actually compatible with Python 3.5, so you don't need to compile from source.
You need to download the wheel, rename it to prevent the python 3.4 check from failing, and then install by passing the renamed file to pip.
For the current version of Tensorflow (peeps in the future, check the website for the latest version and adapt commands below if necessary) run:
wget https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl
mv tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl tensorflow-0.8.0-cp35-none-linux_x86_64.whl
pip install tensorflow-0.8.0-cp35-none-linux_x86_64.whl
Python has "wheels" and "eggs", but is this what you meant by "peep"?
– nobar
Jun 1 '16 at 0:53
add a comment |
The issue is that Ubuntu 16 uses Python3.5 but Tensorflow only provides a wheel for Python 3.4 (indicated by 'cp34' in "tensorflow-0.7.1-cp34-none-linux_x86_64.whl"). Luckily the Wheel is actually compatible with Python 3.5, so you don't need to compile from source.
You need to download the wheel, rename it to prevent the python 3.4 check from failing, and then install by passing the renamed file to pip.
For the current version of Tensorflow (peeps in the future, check the website for the latest version and adapt commands below if necessary) run:
wget https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl
mv tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl tensorflow-0.8.0-cp35-none-linux_x86_64.whl
pip install tensorflow-0.8.0-cp35-none-linux_x86_64.whl
The issue is that Ubuntu 16 uses Python3.5 but Tensorflow only provides a wheel for Python 3.4 (indicated by 'cp34' in "tensorflow-0.7.1-cp34-none-linux_x86_64.whl"). Luckily the Wheel is actually compatible with Python 3.5, so you don't need to compile from source.
You need to download the wheel, rename it to prevent the python 3.4 check from failing, and then install by passing the renamed file to pip.
For the current version of Tensorflow (peeps in the future, check the website for the latest version and adapt commands below if necessary) run:
wget https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl
mv tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl tensorflow-0.8.0-cp35-none-linux_x86_64.whl
pip install tensorflow-0.8.0-cp35-none-linux_x86_64.whl
edited May 15 '16 at 19:40
answered May 15 '16 at 19:21
SixhobbitsSixhobbits
212128
212128
Python has "wheels" and "eggs", but is this what you meant by "peep"?
– nobar
Jun 1 '16 at 0:53
add a comment |
Python has "wheels" and "eggs", but is this what you meant by "peep"?
– nobar
Jun 1 '16 at 0:53
Python has "wheels" and "eggs", but is this what you meant by "peep"?
– nobar
Jun 1 '16 at 0:53
Python has "wheels" and "eggs", but is this what you meant by "peep"?
– nobar
Jun 1 '16 at 0:53
add a comment |
use pip --- for python2
pip3 -- for python3
recommencement to use sudo
pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.10.0-cp35-cp35m-linux_x86_64.whl
New contributor
add a comment |
use pip --- for python2
pip3 -- for python3
recommencement to use sudo
pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.10.0-cp35-cp35m-linux_x86_64.whl
New contributor
add a comment |
use pip --- for python2
pip3 -- for python3
recommencement to use sudo
pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.10.0-cp35-cp35m-linux_x86_64.whl
New contributor
use pip --- for python2
pip3 -- for python3
recommencement to use sudo
pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.10.0-cp35-cp35m-linux_x86_64.whl
New contributor
New contributor
answered 26 mins ago
AbhiAbhi
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f768372%2finstall-tensorflow-with-python3-on-ubuntu-16-04%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I'm also getting this error while installing tensorflow. You can try installing from sources to circumvent this.
– Nitin Kashyap
May 9 '16 at 5:51