Tensorflow r1.0 : could not a find a version that satisfies the requirement tensorflow












32















I want to install Tensorflow 1.o for python on windows.



This is information for my system.



D:>python --version
Python 3.5.2 :: Anaconda 4.2.0 (32-bit)

D:>pip3 --version
pip 9.0.1 from d:webanacondalibsite-packages (python 3.5)'


But, when I execute below command,



D:>pip3 install tensorflow
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow


I don't understand what the problem is...



And I tried another way...



This is case when I use Conda



(tensorflow) D:>pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl
tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl is not a supported wheel on this platform.


What is the problem?










share|improve this question





























    32















    I want to install Tensorflow 1.o for python on windows.



    This is information for my system.



    D:>python --version
    Python 3.5.2 :: Anaconda 4.2.0 (32-bit)

    D:>pip3 --version
    pip 9.0.1 from d:webanacondalibsite-packages (python 3.5)'


    But, when I execute below command,



    D:>pip3 install tensorflow
    Collecting tensorflow
    Could not find a version that satisfies the requirement tensorflow (from versions: )
    No matching distribution found for tensorflow


    I don't understand what the problem is...



    And I tried another way...



    This is case when I use Conda



    (tensorflow) D:>pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl
    tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl is not a supported wheel on this platform.


    What is the problem?










    share|improve this question



























      32












      32








      32


      15






      I want to install Tensorflow 1.o for python on windows.



      This is information for my system.



      D:>python --version
      Python 3.5.2 :: Anaconda 4.2.0 (32-bit)

      D:>pip3 --version
      pip 9.0.1 from d:webanacondalibsite-packages (python 3.5)'


      But, when I execute below command,



      D:>pip3 install tensorflow
      Collecting tensorflow
      Could not find a version that satisfies the requirement tensorflow (from versions: )
      No matching distribution found for tensorflow


      I don't understand what the problem is...



      And I tried another way...



      This is case when I use Conda



      (tensorflow) D:>pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl
      tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl is not a supported wheel on this platform.


      What is the problem?










      share|improve this question
















      I want to install Tensorflow 1.o for python on windows.



      This is information for my system.



      D:>python --version
      Python 3.5.2 :: Anaconda 4.2.0 (32-bit)

      D:>pip3 --version
      pip 9.0.1 from d:webanacondalibsite-packages (python 3.5)'


      But, when I execute below command,



      D:>pip3 install tensorflow
      Collecting tensorflow
      Could not find a version that satisfies the requirement tensorflow (from versions: )
      No matching distribution found for tensorflow


      I don't understand what the problem is...



      And I tried another way...



      This is case when I use Conda



      (tensorflow) D:>pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl
      tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl is not a supported wheel on this platform.


      What is the problem?







      python windows tensorflow install






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 30 '17 at 8:33









      Donald Duck

      4,007134060




      4,007134060










      asked Feb 18 '17 at 15:28









      ceounii leeceounii lee

      161125




      161125
























          7 Answers
          7






          active

          oldest

          votes


















          58














          I was in same problem.



          Below command solved my problem



          pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl


          to find the list of all the urls based on the python version and CPU or GPU only refer to:
          https://www.tensorflow.org/install/pip






          share|improve this answer





















          • 1





            what about gpu link?

            – Maksim Kniazev
            Apr 2 '18 at 6:02











          • This works beautifully!

            – John Zhang
            May 4 '18 at 9:57











          • Answer should acknowledge the top answer from stackoverflow.com/questions/38896424/…

            – meduz
            Feb 4 at 11:40



















          36














          On Microsoft Windows, TensorFlow needs Python 3.5 64-bit. You seem to use Python 32-bit.






          share|improve this answer





















          • 5





            I have Python 3.6 64-Bit but still I am getting the same error on Windows 10

            – Ashwin Hegde
            May 20 '17 at 19:16






          • 2





            @AshwinHegde Have you tried Python 3.5?

            – Franck Dernoncourt
            May 20 '17 at 19:16






          • 2





            Yes! worked on 3.5

            – Ashwin Hegde
            May 22 '17 at 8:43






          • 1





            it works for me!!! Thanks @FranckDernoncourt

            – Shahnaz Khan
            Oct 12 '17 at 8:35








          • 2





            downgraded python 3.6 to 3.5 and it seems installing. Not throwing any error.

            – Swanand Pangam
            Feb 14 '18 at 18:54



















          15














          Tensorflow on windows needs python 3.5. You can follow following steps to activate python 3.5 in anaconda:




          1. See which version of python you have: conda search python

          2. If you already have python 3.5 then go to step 3
            otherwise use conda create -n py35 python=3.5 anaconda to create python 3.5

          3. Activate python 3.5 using activate py35

          4. Now install tensorflow using conda install tensorflow


          If step4 is not working i.e, something like "tensorflow: no package found " then follow this tutorial to forge conda-forge channel and then try installing tensorflow using step4. It worked for me.






          share|improve this answer
























          • This is the first one that worked for me after trying several attempts.

            – Tensigh
            Jul 4 '17 at 3:06











          • Based on this link we should use pip for installation, since conda package is community maintained.

            – Aditya Gupta
            Sep 18 '18 at 15:05



















          7














          Try this



          Installing with Anaconda



          conda create --name tensorflow python=3.5
          activate tensorflow
          conda install jupyter
          conda install scipy
          pip install tensorflow
          or
          pip install tensorflow-gpu


          It is important to add python=3.5 at the end of the first line, because it will install Python 3.5.






          share|improve this answer
























          • This worked like a charm

            – Vaibhav Sharma
            Dec 22 '18 at 16:14



















          3














          I was getting the same error




          1. Get Python 3.5

          2. Upgrade pip version to 9

          3. Install tensorflow


          It worked for me






          share|improve this answer































            3














            From your python version output, looks like that you are using Anaconda python, in that case, there is a simple way to install tensorflow.



            conda install -c conda-forge tensorflow


            This command will take care of all dependencies like upgrade/downgrade etc.






            share|improve this answer

































              1














              i did it with:
              python3 -m pip install --upgrade tensorflow






              share|improve this answer






















                protected by Community Nov 17 '17 at 19:08



                Thank you for your interest in this question.
                Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



                Would you like to answer one of these unanswered questions instead?














                7 Answers
                7






                active

                oldest

                votes








                7 Answers
                7






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                58














                I was in same problem.



                Below command solved my problem



                pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl


                to find the list of all the urls based on the python version and CPU or GPU only refer to:
                https://www.tensorflow.org/install/pip






                share|improve this answer





















                • 1





                  what about gpu link?

                  – Maksim Kniazev
                  Apr 2 '18 at 6:02











                • This works beautifully!

                  – John Zhang
                  May 4 '18 at 9:57











                • Answer should acknowledge the top answer from stackoverflow.com/questions/38896424/…

                  – meduz
                  Feb 4 at 11:40
















                58














                I was in same problem.



                Below command solved my problem



                pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl


                to find the list of all the urls based on the python version and CPU or GPU only refer to:
                https://www.tensorflow.org/install/pip






                share|improve this answer





















                • 1





                  what about gpu link?

                  – Maksim Kniazev
                  Apr 2 '18 at 6:02











                • This works beautifully!

                  – John Zhang
                  May 4 '18 at 9:57











                • Answer should acknowledge the top answer from stackoverflow.com/questions/38896424/…

                  – meduz
                  Feb 4 at 11:40














                58












                58








                58







                I was in same problem.



                Below command solved my problem



                pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl


                to find the list of all the urls based on the python version and CPU or GPU only refer to:
                https://www.tensorflow.org/install/pip






                share|improve this answer















                I was in same problem.



                Below command solved my problem



                pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl


                to find the list of all the urls based on the python version and CPU or GPU only refer to:
                https://www.tensorflow.org/install/pip







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jan 6 at 16:48









                Motoman

                32




                32










                answered Aug 19 '17 at 15:54









                Moynul Haque BiswasMoynul Haque Biswas

                70155




                70155








                • 1





                  what about gpu link?

                  – Maksim Kniazev
                  Apr 2 '18 at 6:02











                • This works beautifully!

                  – John Zhang
                  May 4 '18 at 9:57











                • Answer should acknowledge the top answer from stackoverflow.com/questions/38896424/…

                  – meduz
                  Feb 4 at 11:40














                • 1





                  what about gpu link?

                  – Maksim Kniazev
                  Apr 2 '18 at 6:02











                • This works beautifully!

                  – John Zhang
                  May 4 '18 at 9:57











                • Answer should acknowledge the top answer from stackoverflow.com/questions/38896424/…

                  – meduz
                  Feb 4 at 11:40








                1




                1





                what about gpu link?

                – Maksim Kniazev
                Apr 2 '18 at 6:02





                what about gpu link?

                – Maksim Kniazev
                Apr 2 '18 at 6:02













                This works beautifully!

                – John Zhang
                May 4 '18 at 9:57





                This works beautifully!

                – John Zhang
                May 4 '18 at 9:57













                Answer should acknowledge the top answer from stackoverflow.com/questions/38896424/…

                – meduz
                Feb 4 at 11:40





                Answer should acknowledge the top answer from stackoverflow.com/questions/38896424/…

                – meduz
                Feb 4 at 11:40













                36














                On Microsoft Windows, TensorFlow needs Python 3.5 64-bit. You seem to use Python 32-bit.






                share|improve this answer





















                • 5





                  I have Python 3.6 64-Bit but still I am getting the same error on Windows 10

                  – Ashwin Hegde
                  May 20 '17 at 19:16






                • 2





                  @AshwinHegde Have you tried Python 3.5?

                  – Franck Dernoncourt
                  May 20 '17 at 19:16






                • 2





                  Yes! worked on 3.5

                  – Ashwin Hegde
                  May 22 '17 at 8:43






                • 1





                  it works for me!!! Thanks @FranckDernoncourt

                  – Shahnaz Khan
                  Oct 12 '17 at 8:35








                • 2





                  downgraded python 3.6 to 3.5 and it seems installing. Not throwing any error.

                  – Swanand Pangam
                  Feb 14 '18 at 18:54
















                36














                On Microsoft Windows, TensorFlow needs Python 3.5 64-bit. You seem to use Python 32-bit.






                share|improve this answer





















                • 5





                  I have Python 3.6 64-Bit but still I am getting the same error on Windows 10

                  – Ashwin Hegde
                  May 20 '17 at 19:16






                • 2





                  @AshwinHegde Have you tried Python 3.5?

                  – Franck Dernoncourt
                  May 20 '17 at 19:16






                • 2





                  Yes! worked on 3.5

                  – Ashwin Hegde
                  May 22 '17 at 8:43






                • 1





                  it works for me!!! Thanks @FranckDernoncourt

                  – Shahnaz Khan
                  Oct 12 '17 at 8:35








                • 2





                  downgraded python 3.6 to 3.5 and it seems installing. Not throwing any error.

                  – Swanand Pangam
                  Feb 14 '18 at 18:54














                36












                36








                36







                On Microsoft Windows, TensorFlow needs Python 3.5 64-bit. You seem to use Python 32-bit.






                share|improve this answer















                On Microsoft Windows, TensorFlow needs Python 3.5 64-bit. You seem to use Python 32-bit.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jan 1 at 11:59









                Ujjwal Singh

                3,83032645




                3,83032645










                answered Feb 18 '17 at 15:50









                Franck DernoncourtFranck Dernoncourt

                37.8k32196344




                37.8k32196344








                • 5





                  I have Python 3.6 64-Bit but still I am getting the same error on Windows 10

                  – Ashwin Hegde
                  May 20 '17 at 19:16






                • 2





                  @AshwinHegde Have you tried Python 3.5?

                  – Franck Dernoncourt
                  May 20 '17 at 19:16






                • 2





                  Yes! worked on 3.5

                  – Ashwin Hegde
                  May 22 '17 at 8:43






                • 1





                  it works for me!!! Thanks @FranckDernoncourt

                  – Shahnaz Khan
                  Oct 12 '17 at 8:35








                • 2





                  downgraded python 3.6 to 3.5 and it seems installing. Not throwing any error.

                  – Swanand Pangam
                  Feb 14 '18 at 18:54














                • 5





                  I have Python 3.6 64-Bit but still I am getting the same error on Windows 10

                  – Ashwin Hegde
                  May 20 '17 at 19:16






                • 2





                  @AshwinHegde Have you tried Python 3.5?

                  – Franck Dernoncourt
                  May 20 '17 at 19:16






                • 2





                  Yes! worked on 3.5

                  – Ashwin Hegde
                  May 22 '17 at 8:43






                • 1





                  it works for me!!! Thanks @FranckDernoncourt

                  – Shahnaz Khan
                  Oct 12 '17 at 8:35








                • 2





                  downgraded python 3.6 to 3.5 and it seems installing. Not throwing any error.

                  – Swanand Pangam
                  Feb 14 '18 at 18:54








                5




                5





                I have Python 3.6 64-Bit but still I am getting the same error on Windows 10

                – Ashwin Hegde
                May 20 '17 at 19:16





                I have Python 3.6 64-Bit but still I am getting the same error on Windows 10

                – Ashwin Hegde
                May 20 '17 at 19:16




                2




                2





                @AshwinHegde Have you tried Python 3.5?

                – Franck Dernoncourt
                May 20 '17 at 19:16





                @AshwinHegde Have you tried Python 3.5?

                – Franck Dernoncourt
                May 20 '17 at 19:16




                2




                2





                Yes! worked on 3.5

                – Ashwin Hegde
                May 22 '17 at 8:43





                Yes! worked on 3.5

                – Ashwin Hegde
                May 22 '17 at 8:43




                1




                1





                it works for me!!! Thanks @FranckDernoncourt

                – Shahnaz Khan
                Oct 12 '17 at 8:35







                it works for me!!! Thanks @FranckDernoncourt

                – Shahnaz Khan
                Oct 12 '17 at 8:35






                2




                2





                downgraded python 3.6 to 3.5 and it seems installing. Not throwing any error.

                – Swanand Pangam
                Feb 14 '18 at 18:54





                downgraded python 3.6 to 3.5 and it seems installing. Not throwing any error.

                – Swanand Pangam
                Feb 14 '18 at 18:54











                15














                Tensorflow on windows needs python 3.5. You can follow following steps to activate python 3.5 in anaconda:




                1. See which version of python you have: conda search python

                2. If you already have python 3.5 then go to step 3
                  otherwise use conda create -n py35 python=3.5 anaconda to create python 3.5

                3. Activate python 3.5 using activate py35

                4. Now install tensorflow using conda install tensorflow


                If step4 is not working i.e, something like "tensorflow: no package found " then follow this tutorial to forge conda-forge channel and then try installing tensorflow using step4. It worked for me.






                share|improve this answer
























                • This is the first one that worked for me after trying several attempts.

                  – Tensigh
                  Jul 4 '17 at 3:06











                • Based on this link we should use pip for installation, since conda package is community maintained.

                  – Aditya Gupta
                  Sep 18 '18 at 15:05
















                15














                Tensorflow on windows needs python 3.5. You can follow following steps to activate python 3.5 in anaconda:




                1. See which version of python you have: conda search python

                2. If you already have python 3.5 then go to step 3
                  otherwise use conda create -n py35 python=3.5 anaconda to create python 3.5

                3. Activate python 3.5 using activate py35

                4. Now install tensorflow using conda install tensorflow


                If step4 is not working i.e, something like "tensorflow: no package found " then follow this tutorial to forge conda-forge channel and then try installing tensorflow using step4. It worked for me.






                share|improve this answer
























                • This is the first one that worked for me after trying several attempts.

                  – Tensigh
                  Jul 4 '17 at 3:06











                • Based on this link we should use pip for installation, since conda package is community maintained.

                  – Aditya Gupta
                  Sep 18 '18 at 15:05














                15












                15








                15







                Tensorflow on windows needs python 3.5. You can follow following steps to activate python 3.5 in anaconda:




                1. See which version of python you have: conda search python

                2. If you already have python 3.5 then go to step 3
                  otherwise use conda create -n py35 python=3.5 anaconda to create python 3.5

                3. Activate python 3.5 using activate py35

                4. Now install tensorflow using conda install tensorflow


                If step4 is not working i.e, something like "tensorflow: no package found " then follow this tutorial to forge conda-forge channel and then try installing tensorflow using step4. It worked for me.






                share|improve this answer













                Tensorflow on windows needs python 3.5. You can follow following steps to activate python 3.5 in anaconda:




                1. See which version of python you have: conda search python

                2. If you already have python 3.5 then go to step 3
                  otherwise use conda create -n py35 python=3.5 anaconda to create python 3.5

                3. Activate python 3.5 using activate py35

                4. Now install tensorflow using conda install tensorflow


                If step4 is not working i.e, something like "tensorflow: no package found " then follow this tutorial to forge conda-forge channel and then try installing tensorflow using step4. It worked for me.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 18 '17 at 8:50









                devil in the detaildevil in the detail

                67158




                67158













                • This is the first one that worked for me after trying several attempts.

                  – Tensigh
                  Jul 4 '17 at 3:06











                • Based on this link we should use pip for installation, since conda package is community maintained.

                  – Aditya Gupta
                  Sep 18 '18 at 15:05



















                • This is the first one that worked for me after trying several attempts.

                  – Tensigh
                  Jul 4 '17 at 3:06











                • Based on this link we should use pip for installation, since conda package is community maintained.

                  – Aditya Gupta
                  Sep 18 '18 at 15:05

















                This is the first one that worked for me after trying several attempts.

                – Tensigh
                Jul 4 '17 at 3:06





                This is the first one that worked for me after trying several attempts.

                – Tensigh
                Jul 4 '17 at 3:06













                Based on this link we should use pip for installation, since conda package is community maintained.

                – Aditya Gupta
                Sep 18 '18 at 15:05





                Based on this link we should use pip for installation, since conda package is community maintained.

                – Aditya Gupta
                Sep 18 '18 at 15:05











                7














                Try this



                Installing with Anaconda



                conda create --name tensorflow python=3.5
                activate tensorflow
                conda install jupyter
                conda install scipy
                pip install tensorflow
                or
                pip install tensorflow-gpu


                It is important to add python=3.5 at the end of the first line, because it will install Python 3.5.






                share|improve this answer
























                • This worked like a charm

                  – Vaibhav Sharma
                  Dec 22 '18 at 16:14
















                7














                Try this



                Installing with Anaconda



                conda create --name tensorflow python=3.5
                activate tensorflow
                conda install jupyter
                conda install scipy
                pip install tensorflow
                or
                pip install tensorflow-gpu


                It is important to add python=3.5 at the end of the first line, because it will install Python 3.5.






                share|improve this answer
























                • This worked like a charm

                  – Vaibhav Sharma
                  Dec 22 '18 at 16:14














                7












                7








                7







                Try this



                Installing with Anaconda



                conda create --name tensorflow python=3.5
                activate tensorflow
                conda install jupyter
                conda install scipy
                pip install tensorflow
                or
                pip install tensorflow-gpu


                It is important to add python=3.5 at the end of the first line, because it will install Python 3.5.






                share|improve this answer













                Try this



                Installing with Anaconda



                conda create --name tensorflow python=3.5
                activate tensorflow
                conda install jupyter
                conda install scipy
                pip install tensorflow
                or
                pip install tensorflow-gpu


                It is important to add python=3.5 at the end of the first line, because it will install Python 3.5.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered May 30 '17 at 6:21









                SrGraceSrGrace

                99112




                99112













                • This worked like a charm

                  – Vaibhav Sharma
                  Dec 22 '18 at 16:14



















                • This worked like a charm

                  – Vaibhav Sharma
                  Dec 22 '18 at 16:14

















                This worked like a charm

                – Vaibhav Sharma
                Dec 22 '18 at 16:14





                This worked like a charm

                – Vaibhav Sharma
                Dec 22 '18 at 16:14











                3














                I was getting the same error




                1. Get Python 3.5

                2. Upgrade pip version to 9

                3. Install tensorflow


                It worked for me






                share|improve this answer




























                  3














                  I was getting the same error




                  1. Get Python 3.5

                  2. Upgrade pip version to 9

                  3. Install tensorflow


                  It worked for me






                  share|improve this answer


























                    3












                    3








                    3







                    I was getting the same error




                    1. Get Python 3.5

                    2. Upgrade pip version to 9

                    3. Install tensorflow


                    It worked for me






                    share|improve this answer













                    I was getting the same error




                    1. Get Python 3.5

                    2. Upgrade pip version to 9

                    3. Install tensorflow


                    It worked for me







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered May 27 '17 at 15:22









                    GeekGeek

                    9,952165977




                    9,952165977























                        3














                        From your python version output, looks like that you are using Anaconda python, in that case, there is a simple way to install tensorflow.



                        conda install -c conda-forge tensorflow


                        This command will take care of all dependencies like upgrade/downgrade etc.






                        share|improve this answer






























                          3














                          From your python version output, looks like that you are using Anaconda python, in that case, there is a simple way to install tensorflow.



                          conda install -c conda-forge tensorflow


                          This command will take care of all dependencies like upgrade/downgrade etc.






                          share|improve this answer




























                            3












                            3








                            3







                            From your python version output, looks like that you are using Anaconda python, in that case, there is a simple way to install tensorflow.



                            conda install -c conda-forge tensorflow


                            This command will take care of all dependencies like upgrade/downgrade etc.






                            share|improve this answer















                            From your python version output, looks like that you are using Anaconda python, in that case, there is a simple way to install tensorflow.



                            conda install -c conda-forge tensorflow


                            This command will take care of all dependencies like upgrade/downgrade etc.







                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Oct 27 '18 at 4:46

























                            answered Oct 27 '18 at 3:56









                            deenaikdeenaik

                            13118




                            13118























                                1














                                i did it with:
                                python3 -m pip install --upgrade tensorflow






                                share|improve this answer




























                                  1














                                  i did it with:
                                  python3 -m pip install --upgrade tensorflow






                                  share|improve this answer


























                                    1












                                    1








                                    1







                                    i did it with:
                                    python3 -m pip install --upgrade tensorflow






                                    share|improve this answer













                                    i did it with:
                                    python3 -m pip install --upgrade tensorflow







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Nov 30 '17 at 4:11









                                    tonycor nikolauostonycor nikolauos

                                    20427




                                    20427

















                                        protected by Community Nov 17 '17 at 19:08



                                        Thank you for your interest in this question.
                                        Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



                                        Would you like to answer one of these unanswered questions instead?



                                        Popular posts from this blog

                                        Monofisismo

                                        Angular Downloading a file using contenturl with Basic Authentication

                                        Olmecas