How to install Spyder 3.0 developer version
Spyder is a Scientific PYthon Development EnviRonment (IDE).
To install it from github you need following these commands:
git clone https://github.com/spyder-ide/spyder.git
cd spyder
python setup.py install
spyder
Failed to import qtpy.
Please check Spyder istallation requirements:
qtpy 1.1.0+ and either
PyQt5 5.2+ or
PyQt4 4.6+
If you get this error, you must install dependencies:
sudo apt-get install python-pip
pip install --upgrade pip
sudo pip install qtpy qtawesome pickleshare pep8 qtconsole nbconvert
python bootstrap.py
Now, if you like a icon on your desktop to run Spyder just with one click, you need create spyder.desktop file on your Desktop with these lines:
[Desktop Entry]
Type=Application
Icon=${SPYDER_FOLDER}/img_src/spyder.png
Name=Spyder
Comment="Start Spyder"
Exec="/usr/local/bin/spyder"
Terminal=false
Categories=Controller;
GenericName[en_US]=
Name[en_US]=Spyder
Remember change ${SPYDER_FOLDER} with the PATH where you downloaded Spyder
Enjoy it!
To install it from github you need following these commands:
git clone https://github.com/spyder-ide/spyder.git
cd spyder
python setup.py install
spyder
Failed to import qtpy.
Please check Spyder istallation requirements:
qtpy 1.1.0+ and either
PyQt5 5.2+ or
PyQt4 4.6+
If you get this error, you must install dependencies:
sudo apt-get install python-pip
pip install --upgrade pip
sudo pip install qtpy qtawesome pickleshare pep8 qtconsole nbconvert
python bootstrap.py
Now, if you like a icon on your desktop to run Spyder just with one click, you need create spyder.desktop file on your Desktop with these lines:
[Desktop Entry]
Type=Application
Icon=${SPYDER_FOLDER}/img_src/spyder.png
Name=Spyder
Comment="Start Spyder"
Exec="/usr/local/bin/spyder"
Terminal=false
Categories=Controller;
GenericName[en_US]=
Name[en_US]=Spyder
Enjoy it!
This comment has been removed by the author.
ReplyDelete