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













6















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?










share|improve this question
























  • 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















6















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?










share|improve this question
























  • 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













6












6








6


2






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?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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

















  • 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










2 Answers
2






active

oldest

votes


















6














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





share|improve this answer

























  • Python has "wheels" and "eggs", but is this what you meant by "peep"?

    – nobar
    Jun 1 '16 at 0:53


















0














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 





share|improve this answer








New contributor




Abhi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















    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
    );



    );













    draft saved

    draft discarded


















    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









    6














    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





    share|improve this answer

























    • Python has "wheels" and "eggs", but is this what you meant by "peep"?

      – nobar
      Jun 1 '16 at 0:53















    6














    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





    share|improve this answer

























    • Python has "wheels" and "eggs", but is this what you meant by "peep"?

      – nobar
      Jun 1 '16 at 0:53













    6












    6








    6







    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





    share|improve this answer















    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






    share|improve this answer














    share|improve this answer



    share|improve this answer








    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

















    • 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













    0














    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 





    share|improve this answer








    New contributor




    Abhi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.
























      0














      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 





      share|improve this answer








      New contributor




      Abhi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















        0












        0








        0







        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 





        share|improve this answer








        New contributor




        Abhi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.










        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 






        share|improve this answer








        New contributor




        Abhi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        share|improve this answer



        share|improve this answer






        New contributor




        Abhi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        answered 26 mins ago









        AbhiAbhi

        1




        1




        New contributor




        Abhi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.





        New contributor





        Abhi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






        Abhi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.



























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

            Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

            Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»