How to install Spyder3?












5















I'm looking for instructions on how to download and install Spyder3.



I'm running Ubuntu 14.04 and these are my computer specifications:




  • Ubuntu 64bits

  • Lenovo 510 Core I7

  • Ram: 8gb










share|improve this question





























    5















    I'm looking for instructions on how to download and install Spyder3.



    I'm running Ubuntu 14.04 and these are my computer specifications:




    • Ubuntu 64bits

    • Lenovo 510 Core I7

    • Ram: 8gb










    share|improve this question



























      5












      5








      5


      1






      I'm looking for instructions on how to download and install Spyder3.



      I'm running Ubuntu 14.04 and these are my computer specifications:




      • Ubuntu 64bits

      • Lenovo 510 Core I7

      • Ram: 8gb










      share|improve this question
















      I'm looking for instructions on how to download and install Spyder3.



      I'm running Ubuntu 14.04 and these are my computer specifications:




      • Ubuntu 64bits

      • Lenovo 510 Core I7

      • Ram: 8gb







      software-installation spyder






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Sep 14 '17 at 23:49









      David Foerster

      27.9k1364110




      27.9k1364110










      asked Oct 20 '14 at 13:55









      HamouzaHamouza

      31126




      31126






















          2 Answers
          2






          active

          oldest

          votes


















          9














          Spyder can be installed with the following commands:



          Spyder



          sudo apt install spyder


          Spyder3



          sudo apt install spyder3  


          Python IDE for scientists

          Spyder is a free open-source Python development environment providing MATLAB-like features in a simple and lightweight application.



          If for you want to install the latest version of Sypder 3 instead of the Ubuntu package maintainer's version, the commands to do so are as follows:



          sudo apt install python3-pip python3-pyqt4 python3-pyqt5 python3-pyqt5.qtsvg python3-pyqt5.qtwebkit  
          sudo pip3 install -U spyder # credit for this method goes to N0rbert


          Spyder can do inline plotting. To try out this feature open the terminal and type:



          sudo apt install python3 python3-matplotlib spyder3 ipython3  


          After the ipython3 prompt in the IPython console copy/paste the below code and press the Enter key to run it.



          import matplotlib.pyplot as plt   
          x, y = [-1, 12], [1, 4]
          plt.plot(x, y, marker = 'o')


          enter image description here






          share|improve this answer





















          • 1





            Later in time it become just spyder3, so : sudo apt-get install spyder3

            – Omegafil
            Nov 24 '17 at 9:15













          • @Omegafil spyder and spyder3 are two separate apps in all versions of Ubuntu from 12.04-19.04. You can install either one or both.

            – karel
            Jan 10 at 19:18





















          1














          Spyder3 is only available for trusty from backports repository.




          1. Open software-properties-gtk → Update tab → Enable "Unsupported updates (trusty-backports)"

          2. On closing, reload package list.


          Now, you will able to find it in the software-center, otherwise using command line:



          sudo apt update
          sudo apt install spyder3


          For similar issues, you may search for packages through packages.ubuntu.com






          share|improve this answer






















            protected by Community Feb 18 '18 at 12:45



            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?














            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            9














            Spyder can be installed with the following commands:



            Spyder



            sudo apt install spyder


            Spyder3



            sudo apt install spyder3  


            Python IDE for scientists

            Spyder is a free open-source Python development environment providing MATLAB-like features in a simple and lightweight application.



            If for you want to install the latest version of Sypder 3 instead of the Ubuntu package maintainer's version, the commands to do so are as follows:



            sudo apt install python3-pip python3-pyqt4 python3-pyqt5 python3-pyqt5.qtsvg python3-pyqt5.qtwebkit  
            sudo pip3 install -U spyder # credit for this method goes to N0rbert


            Spyder can do inline plotting. To try out this feature open the terminal and type:



            sudo apt install python3 python3-matplotlib spyder3 ipython3  


            After the ipython3 prompt in the IPython console copy/paste the below code and press the Enter key to run it.



            import matplotlib.pyplot as plt   
            x, y = [-1, 12], [1, 4]
            plt.plot(x, y, marker = 'o')


            enter image description here






            share|improve this answer





















            • 1





              Later in time it become just spyder3, so : sudo apt-get install spyder3

              – Omegafil
              Nov 24 '17 at 9:15













            • @Omegafil spyder and spyder3 are two separate apps in all versions of Ubuntu from 12.04-19.04. You can install either one or both.

              – karel
              Jan 10 at 19:18


















            9














            Spyder can be installed with the following commands:



            Spyder



            sudo apt install spyder


            Spyder3



            sudo apt install spyder3  


            Python IDE for scientists

            Spyder is a free open-source Python development environment providing MATLAB-like features in a simple and lightweight application.



            If for you want to install the latest version of Sypder 3 instead of the Ubuntu package maintainer's version, the commands to do so are as follows:



            sudo apt install python3-pip python3-pyqt4 python3-pyqt5 python3-pyqt5.qtsvg python3-pyqt5.qtwebkit  
            sudo pip3 install -U spyder # credit for this method goes to N0rbert


            Spyder can do inline plotting. To try out this feature open the terminal and type:



            sudo apt install python3 python3-matplotlib spyder3 ipython3  


            After the ipython3 prompt in the IPython console copy/paste the below code and press the Enter key to run it.



            import matplotlib.pyplot as plt   
            x, y = [-1, 12], [1, 4]
            plt.plot(x, y, marker = 'o')


            enter image description here






            share|improve this answer





















            • 1





              Later in time it become just spyder3, so : sudo apt-get install spyder3

              – Omegafil
              Nov 24 '17 at 9:15













            • @Omegafil spyder and spyder3 are two separate apps in all versions of Ubuntu from 12.04-19.04. You can install either one or both.

              – karel
              Jan 10 at 19:18
















            9












            9








            9







            Spyder can be installed with the following commands:



            Spyder



            sudo apt install spyder


            Spyder3



            sudo apt install spyder3  


            Python IDE for scientists

            Spyder is a free open-source Python development environment providing MATLAB-like features in a simple and lightweight application.



            If for you want to install the latest version of Sypder 3 instead of the Ubuntu package maintainer's version, the commands to do so are as follows:



            sudo apt install python3-pip python3-pyqt4 python3-pyqt5 python3-pyqt5.qtsvg python3-pyqt5.qtwebkit  
            sudo pip3 install -U spyder # credit for this method goes to N0rbert


            Spyder can do inline plotting. To try out this feature open the terminal and type:



            sudo apt install python3 python3-matplotlib spyder3 ipython3  


            After the ipython3 prompt in the IPython console copy/paste the below code and press the Enter key to run it.



            import matplotlib.pyplot as plt   
            x, y = [-1, 12], [1, 4]
            plt.plot(x, y, marker = 'o')


            enter image description here






            share|improve this answer















            Spyder can be installed with the following commands:



            Spyder



            sudo apt install spyder


            Spyder3



            sudo apt install spyder3  


            Python IDE for scientists

            Spyder is a free open-source Python development environment providing MATLAB-like features in a simple and lightweight application.



            If for you want to install the latest version of Sypder 3 instead of the Ubuntu package maintainer's version, the commands to do so are as follows:



            sudo apt install python3-pip python3-pyqt4 python3-pyqt5 python3-pyqt5.qtsvg python3-pyqt5.qtwebkit  
            sudo pip3 install -U spyder # credit for this method goes to N0rbert


            Spyder can do inline plotting. To try out this feature open the terminal and type:



            sudo apt install python3 python3-matplotlib spyder3 ipython3  


            After the ipython3 prompt in the IPython console copy/paste the below code and press the Enter key to run it.



            import matplotlib.pyplot as plt   
            x, y = [-1, 12], [1, 4]
            plt.plot(x, y, marker = 'o')


            enter image description here







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jan 10 at 16:36

























            answered Oct 20 '14 at 14:12









            karelkarel

            57.8k12128146




            57.8k12128146








            • 1





              Later in time it become just spyder3, so : sudo apt-get install spyder3

              – Omegafil
              Nov 24 '17 at 9:15













            • @Omegafil spyder and spyder3 are two separate apps in all versions of Ubuntu from 12.04-19.04. You can install either one or both.

              – karel
              Jan 10 at 19:18
















            • 1





              Later in time it become just spyder3, so : sudo apt-get install spyder3

              – Omegafil
              Nov 24 '17 at 9:15













            • @Omegafil spyder and spyder3 are two separate apps in all versions of Ubuntu from 12.04-19.04. You can install either one or both.

              – karel
              Jan 10 at 19:18










            1




            1





            Later in time it become just spyder3, so : sudo apt-get install spyder3

            – Omegafil
            Nov 24 '17 at 9:15







            Later in time it become just spyder3, so : sudo apt-get install spyder3

            – Omegafil
            Nov 24 '17 at 9:15















            @Omegafil spyder and spyder3 are two separate apps in all versions of Ubuntu from 12.04-19.04. You can install either one or both.

            – karel
            Jan 10 at 19:18







            @Omegafil spyder and spyder3 are two separate apps in all versions of Ubuntu from 12.04-19.04. You can install either one or both.

            – karel
            Jan 10 at 19:18















            1














            Spyder3 is only available for trusty from backports repository.




            1. Open software-properties-gtk → Update tab → Enable "Unsupported updates (trusty-backports)"

            2. On closing, reload package list.


            Now, you will able to find it in the software-center, otherwise using command line:



            sudo apt update
            sudo apt install spyder3


            For similar issues, you may search for packages through packages.ubuntu.com






            share|improve this answer




























              1














              Spyder3 is only available for trusty from backports repository.




              1. Open software-properties-gtk → Update tab → Enable "Unsupported updates (trusty-backports)"

              2. On closing, reload package list.


              Now, you will able to find it in the software-center, otherwise using command line:



              sudo apt update
              sudo apt install spyder3


              For similar issues, you may search for packages through packages.ubuntu.com






              share|improve this answer


























                1












                1








                1







                Spyder3 is only available for trusty from backports repository.




                1. Open software-properties-gtk → Update tab → Enable "Unsupported updates (trusty-backports)"

                2. On closing, reload package list.


                Now, you will able to find it in the software-center, otherwise using command line:



                sudo apt update
                sudo apt install spyder3


                For similar issues, you may search for packages through packages.ubuntu.com






                share|improve this answer













                Spyder3 is only available for trusty from backports repository.




                1. Open software-properties-gtk → Update tab → Enable "Unsupported updates (trusty-backports)"

                2. On closing, reload package list.


                Now, you will able to find it in the software-center, otherwise using command line:



                sudo apt update
                sudo apt install spyder3


                For similar issues, you may search for packages through packages.ubuntu.com







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Dec 17 '16 at 17:10









                user.dzuser.dz

                34.6k1190176




                34.6k1190176

















                    protected by Community Feb 18 '18 at 12:45



                    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

                    How did Captain America manage to do this?

                    迪纳利

                    南乌拉尔铁路局