m (adding the github repo again) |
m (markup foo) |
||
Line 1: | Line 1: | ||
[https://www.spyder-ide.org/ '''Spyder'''] is a free and open-source IDE written in, and for programming in, Python. It is primarily intended for writing programs for technical computing and is built using the Qt widget toolkit. It is in the official repositories of Fedora. There are two builds of Spyder: one with Python 2.x support and another with Python 3.x support | [https://www.spyder-ide.org/ '''Spyder'''] is a free and open-source IDE[[Category:Integrated development environments]] written in, and for programming in, Python[[Category:Python]]. It is primarily intended for writing programs for technical computing and is built using the Qt[[Category:Qt]] widget toolkit. It is in the official repositories of Fedora. | ||
There are two builds of Spyder: one with Python 2.x support and another with Python 3.x support. they are often called Spyder and Spyder3, respectively. | |||
== Installation == | == Installation == | ||
Line 6: | Line 8: | ||
To install Spyder (with Python 2.x support) merely run: | To install Spyder (with Python 2.x support) merely run: | ||
<code> | |||
< | |||
sudo dnf install spyder | sudo dnf install spyder | ||
</ | </code> | ||
while to install Spyder3 run: | while to install Spyder3 run: | ||
<code> | |||
< | |||
sudo dnf install python3-spyder | sudo dnf install python3-spyder | ||
</ | </code> | ||
=== pip === | === pip === | ||
If you want the very latest Spyder release it is probably best to use Python's pip package manager. To install Spyder this way one first needs to install PyQt5. To do this for Spyder (with Python 2.x support) run: | If you want the very latest Spyder release it is probably best to use Python's pip package manager. To install Spyder this way one first needs to install PyQt5. To do this for Spyder (with Python 2.x support) run: | ||
<code> | |||
< | |||
sudo dnf install python-qt5 | sudo dnf install python-qt5 | ||
</ | </code> | ||
while to do this for Spyder3 run: | while to do this for Spyder3 run: | ||
: <code>sudo dnf install python3-qt5</code> | |||
< | |||
sudo dnf install python3-qt5 | |||
</ | |||
Then to install Spyder (with Python 2.x support) with pip run: | Then to install Spyder (with Python 2.x support) with pip run: | ||
: <code>sudo pip install spyder</code> | |||
< | |||
sudo pip install spyder | |||
</ | |||
while to install Spyder3 run: | while to install Spyder3 run: | ||
: <code>sudo pip3 install spyder</code> | |||
< | |||
sudo pip3 install spyder | |||
</ | |||
To upgrade these installations of Spyder one merely needs to run these same commands with the <code>--upgrade</code> option. So for Spyder (with Python 2.x support) one would run: | To upgrade these installations of Spyder one merely needs to run these same commands with the <code>--upgrade</code> option. So for Spyder (with Python 2.x support) one would run: | ||
: <code>sudo pip install --upgrade spyder</code> | |||
< | |||
sudo pip install --upgrade spyder | |||
</ | |||
== Documentation == | == Documentation == | ||
* https://docs.spyder-ide.org/ | |||
*: documentation for using Spyder | |||
== See also == | == See also == | ||
; Website: https://www.spyder-ide.org/ | |||
; GitHub:[https://github.com/spyder-ide/spyder github:spyder-ide/spyder] | |||
Revision as of 13:08, 14 August 2018
Spyder is a free and open-source IDE written in, and for programming in, Python. It is primarily intended for writing programs for technical computing and is built using the Qt widget toolkit. It is in the official repositories of Fedora.
There are two builds of Spyder: one with Python 2.x support and another with Python 3.x support. they are often called Spyder and Spyder3, respectively.
Installation
DNF
To install Spyder (with Python 2.x support) merely run:
sudo dnf install spyder
while to install Spyder3 run:
sudo dnf install python3-spyder
pip
If you want the very latest Spyder release it is probably best to use Python's pip package manager. To install Spyder this way one first needs to install PyQt5. To do this for Spyder (with Python 2.x support) run:
sudo dnf install python-qt5
while to do this for Spyder3 run:
sudo dnf install python3-qt5
Then to install Spyder (with Python 2.x support) with pip run:
sudo pip install spyder
while to install Spyder3 run:
sudo pip3 install spyder
To upgrade these installations of Spyder one merely needs to run these same commands with the --upgrade
option. So for Spyder (with Python 2.x support) one would run:
sudo pip install --upgrade spyder
Documentation
- https://docs.spyder-ide.org/
- documentation for using Spyder
See also
- Website
- https://www.spyder-ide.org/
- GitHub
- github:spyder-ide/spyder