How do I install Wine 3.15? [duplicate]

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
3
down vote

favorite













This question already has an answer here:



  • How do I install wine?

    4 answers



  • How to install the latest version of WINE as the system version?

    2 answers



I'm trying to install the latest WINE, and I'm reading the readme, it's telling me to do the ./configure thing but when I do I get this message



bash: ./configure: No such file or directory


What am I supposed to do, and how do I fix it, I'm running Ubuntu 14.04, anything newer than this runs into some problems this is an old computer.










share|improve this question















marked as duplicate by David Foerster, Eric Carvalho, Fabby, Zanna, Thomas Sep 8 at 5:12


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.


















    up vote
    3
    down vote

    favorite













    This question already has an answer here:



    • How do I install wine?

      4 answers



    • How to install the latest version of WINE as the system version?

      2 answers



    I'm trying to install the latest WINE, and I'm reading the readme, it's telling me to do the ./configure thing but when I do I get this message



    bash: ./configure: No such file or directory


    What am I supposed to do, and how do I fix it, I'm running Ubuntu 14.04, anything newer than this runs into some problems this is an old computer.










    share|improve this question















    marked as duplicate by David Foerster, Eric Carvalho, Fabby, Zanna, Thomas Sep 8 at 5:12


    This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
















      up vote
      3
      down vote

      favorite









      up vote
      3
      down vote

      favorite












      This question already has an answer here:



      • How do I install wine?

        4 answers



      • How to install the latest version of WINE as the system version?

        2 answers



      I'm trying to install the latest WINE, and I'm reading the readme, it's telling me to do the ./configure thing but when I do I get this message



      bash: ./configure: No such file or directory


      What am I supposed to do, and how do I fix it, I'm running Ubuntu 14.04, anything newer than this runs into some problems this is an old computer.










      share|improve this question
















      This question already has an answer here:



      • How do I install wine?

        4 answers



      • How to install the latest version of WINE as the system version?

        2 answers



      I'm trying to install the latest WINE, and I'm reading the readme, it's telling me to do the ./configure thing but when I do I get this message



      bash: ./configure: No such file or directory


      What am I supposed to do, and how do I fix it, I'm running Ubuntu 14.04, anything newer than this runs into some problems this is an old computer.





      This question already has an answer here:



      • How do I install wine?

        4 answers



      • How to install the latest version of WINE as the system version?

        2 answers







      software-installation wine






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Sep 7 at 12:51









      David Foerster

      26.3k1362106




      26.3k1362106










      asked Sep 7 at 7:13









      SonicStarMan

      362




      362




      marked as duplicate by David Foerster, Eric Carvalho, Fabby, Zanna, Thomas Sep 8 at 5:12


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






      marked as duplicate by David Foerster, Eric Carvalho, Fabby, Zanna, Thomas Sep 8 at 5:12


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          4
          down vote













          WineHQ has nice repositories for most Ubuntu versions.



          You should install wine using the steps listed on the official documentation instead of compiling by source.



          Since you want version 3.15, you should pick winehq-staging, which I use in my xenial installation without problems.



          Basically the steps are:



          sudo dpkg --add-architecture i386 # if using a 64bit distribution of Ubuntu
          curl -L https://dl.winehq.org/wine-builds/Release.key | sudo apt-key add -
          sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
          sudo apt-get update
          sudo apt-get install --install-recommends winehq-staging # staging repo for 3.15 version


          In addition, maybe you would want to have also the latest version of winetricks - according to the official documentation:



          cd "$HOME/Downloads"
          wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
          chmod +x winetricks
          sudo mv winetricks /usr/local/bin/


          Then you can type winetricks into a terminal to run it, for the further new versions it will guide you how to update.






          share|improve this answer





























            up vote
            1
            down vote













            Verify that your terminal is in the same directory as ./configure, if it is not, then bash will simply not be able to find it. Use absolute path, i.e. /path/to/file or ~/path/file, ~ is substituted by your $HOME directory.



            terminal opened at /usr/lib/x86_64-linux-gnu/qt5/mkspecs



            If the folder is messy, verify that ./configure exists by typing ls | grep configure; to search subdirectories use recursive mode, ls -R | grep configure.



            TIP: Copying file/directory from file manager and pasting it into text field (i.e. terminal, text editor, browser URL field) will produce its absolute path. To paste into terminal use shortcut shift+ctrl+v, middle mouse button or use context menu (right click).






            share|improve this answer





























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              4
              down vote













              WineHQ has nice repositories for most Ubuntu versions.



              You should install wine using the steps listed on the official documentation instead of compiling by source.



              Since you want version 3.15, you should pick winehq-staging, which I use in my xenial installation without problems.



              Basically the steps are:



              sudo dpkg --add-architecture i386 # if using a 64bit distribution of Ubuntu
              curl -L https://dl.winehq.org/wine-builds/Release.key | sudo apt-key add -
              sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
              sudo apt-get update
              sudo apt-get install --install-recommends winehq-staging # staging repo for 3.15 version


              In addition, maybe you would want to have also the latest version of winetricks - according to the official documentation:



              cd "$HOME/Downloads"
              wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
              chmod +x winetricks
              sudo mv winetricks /usr/local/bin/


              Then you can type winetricks into a terminal to run it, for the further new versions it will guide you how to update.






              share|improve this answer


























                up vote
                4
                down vote













                WineHQ has nice repositories for most Ubuntu versions.



                You should install wine using the steps listed on the official documentation instead of compiling by source.



                Since you want version 3.15, you should pick winehq-staging, which I use in my xenial installation without problems.



                Basically the steps are:



                sudo dpkg --add-architecture i386 # if using a 64bit distribution of Ubuntu
                curl -L https://dl.winehq.org/wine-builds/Release.key | sudo apt-key add -
                sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
                sudo apt-get update
                sudo apt-get install --install-recommends winehq-staging # staging repo for 3.15 version


                In addition, maybe you would want to have also the latest version of winetricks - according to the official documentation:



                cd "$HOME/Downloads"
                wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
                chmod +x winetricks
                sudo mv winetricks /usr/local/bin/


                Then you can type winetricks into a terminal to run it, for the further new versions it will guide you how to update.






                share|improve this answer
























                  up vote
                  4
                  down vote










                  up vote
                  4
                  down vote









                  WineHQ has nice repositories for most Ubuntu versions.



                  You should install wine using the steps listed on the official documentation instead of compiling by source.



                  Since you want version 3.15, you should pick winehq-staging, which I use in my xenial installation without problems.



                  Basically the steps are:



                  sudo dpkg --add-architecture i386 # if using a 64bit distribution of Ubuntu
                  curl -L https://dl.winehq.org/wine-builds/Release.key | sudo apt-key add -
                  sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
                  sudo apt-get update
                  sudo apt-get install --install-recommends winehq-staging # staging repo for 3.15 version


                  In addition, maybe you would want to have also the latest version of winetricks - according to the official documentation:



                  cd "$HOME/Downloads"
                  wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
                  chmod +x winetricks
                  sudo mv winetricks /usr/local/bin/


                  Then you can type winetricks into a terminal to run it, for the further new versions it will guide you how to update.






                  share|improve this answer














                  WineHQ has nice repositories for most Ubuntu versions.



                  You should install wine using the steps listed on the official documentation instead of compiling by source.



                  Since you want version 3.15, you should pick winehq-staging, which I use in my xenial installation without problems.



                  Basically the steps are:



                  sudo dpkg --add-architecture i386 # if using a 64bit distribution of Ubuntu
                  curl -L https://dl.winehq.org/wine-builds/Release.key | sudo apt-key add -
                  sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
                  sudo apt-get update
                  sudo apt-get install --install-recommends winehq-staging # staging repo for 3.15 version


                  In addition, maybe you would want to have also the latest version of winetricks - according to the official documentation:



                  cd "$HOME/Downloads"
                  wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
                  chmod +x winetricks
                  sudo mv winetricks /usr/local/bin/


                  Then you can type winetricks into a terminal to run it, for the further new versions it will guide you how to update.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Sep 7 at 8:06









                  pa4080

                  12.3k52256




                  12.3k52256










                  answered Sep 7 at 7:29









                  Mr Shunz

                  1,8671319




                  1,8671319






















                      up vote
                      1
                      down vote













                      Verify that your terminal is in the same directory as ./configure, if it is not, then bash will simply not be able to find it. Use absolute path, i.e. /path/to/file or ~/path/file, ~ is substituted by your $HOME directory.



                      terminal opened at /usr/lib/x86_64-linux-gnu/qt5/mkspecs



                      If the folder is messy, verify that ./configure exists by typing ls | grep configure; to search subdirectories use recursive mode, ls -R | grep configure.



                      TIP: Copying file/directory from file manager and pasting it into text field (i.e. terminal, text editor, browser URL field) will produce its absolute path. To paste into terminal use shortcut shift+ctrl+v, middle mouse button or use context menu (right click).






                      share|improve this answer


























                        up vote
                        1
                        down vote













                        Verify that your terminal is in the same directory as ./configure, if it is not, then bash will simply not be able to find it. Use absolute path, i.e. /path/to/file or ~/path/file, ~ is substituted by your $HOME directory.



                        terminal opened at /usr/lib/x86_64-linux-gnu/qt5/mkspecs



                        If the folder is messy, verify that ./configure exists by typing ls | grep configure; to search subdirectories use recursive mode, ls -R | grep configure.



                        TIP: Copying file/directory from file manager and pasting it into text field (i.e. terminal, text editor, browser URL field) will produce its absolute path. To paste into terminal use shortcut shift+ctrl+v, middle mouse button or use context menu (right click).






                        share|improve this answer
























                          up vote
                          1
                          down vote










                          up vote
                          1
                          down vote









                          Verify that your terminal is in the same directory as ./configure, if it is not, then bash will simply not be able to find it. Use absolute path, i.e. /path/to/file or ~/path/file, ~ is substituted by your $HOME directory.



                          terminal opened at /usr/lib/x86_64-linux-gnu/qt5/mkspecs



                          If the folder is messy, verify that ./configure exists by typing ls | grep configure; to search subdirectories use recursive mode, ls -R | grep configure.



                          TIP: Copying file/directory from file manager and pasting it into text field (i.e. terminal, text editor, browser URL field) will produce its absolute path. To paste into terminal use shortcut shift+ctrl+v, middle mouse button or use context menu (right click).






                          share|improve this answer














                          Verify that your terminal is in the same directory as ./configure, if it is not, then bash will simply not be able to find it. Use absolute path, i.e. /path/to/file or ~/path/file, ~ is substituted by your $HOME directory.



                          terminal opened at /usr/lib/x86_64-linux-gnu/qt5/mkspecs



                          If the folder is messy, verify that ./configure exists by typing ls | grep configure; to search subdirectories use recursive mode, ls -R | grep configure.



                          TIP: Copying file/directory from file manager and pasting it into text field (i.e. terminal, text editor, browser URL field) will produce its absolute path. To paste into terminal use shortcut shift+ctrl+v, middle mouse button or use context menu (right click).







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Sep 7 at 8:05

























                          answered Sep 7 at 7:54









                          chameleon-hider

                          112




                          112












                              這個網誌中的熱門文章

                              How to combine Bézier curves to a surface?

                              Carbon dioxide

                              Why am i infinitely getting the same tweet with the Twitter Search API?