How to install Spyder3?
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
add a comment |
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
add a comment |
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
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
software-installation spyder
edited Sep 14 '17 at 23:49
David Foerster
27.9k1364110
27.9k1364110
asked Oct 20 '14 at 13:55
HamouzaHamouza
31126
31126
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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')
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
add a comment |
Spyder3 is only available for trusty from backports repository.
- Open
software-properties-gtk
→ Update tab → Enable "Unsupported updates (trusty-backports)" - 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
add a comment |
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
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')
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
add a comment |
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')
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
add a comment |
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')
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')
edited Jan 10 at 16:36
answered Oct 20 '14 at 14:12
karelkarel
58k12128146
58k12128146
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
add a comment |
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
add a comment |
Spyder3 is only available for trusty from backports repository.
- Open
software-properties-gtk
→ Update tab → Enable "Unsupported updates (trusty-backports)" - 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
add a comment |
Spyder3 is only available for trusty from backports repository.
- Open
software-properties-gtk
→ Update tab → Enable "Unsupported updates (trusty-backports)" - 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
add a comment |
Spyder3 is only available for trusty from backports repository.
- Open
software-properties-gtk
→ Update tab → Enable "Unsupported updates (trusty-backports)" - 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
Spyder3 is only available for trusty from backports repository.
- Open
software-properties-gtk
→ Update tab → Enable "Unsupported updates (trusty-backports)" - 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
answered Dec 17 '16 at 17:10
user.dzuser.dz
34.6k1190176
34.6k1190176
add a comment |
add a comment |
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?