Spyder
Spyder is a powerful scientific environment written in Python, for Python, and designed by and for scientists, engineers and data analysts.
Spyder offers a unique combination of the advanced editing, analysis, debugging, and profiling functionality of a comprehensive development tool with the data exploration, interactive execution, deep inspection, and beautiful visualization capabilities of a scientific package.
REQUIREMENT
Installation
Install spyder inside it's own conda environment:
bash
mamba create -n spyder -c conda-forge "spyder==6.*"Activate environment:
bash
mamba activate spyderCreate desktop icon by running this command in your Workbench Terminal to be able to see it in Remote desktop:
bash
cat <<EOF | tee ~/Desktop/Spyder.desktop
[Desktop Entry]
Version=1.0
Type=Application
Name=Spyder
Exec=$(which spyder) -w ${HOME} -p ${HOME}/spyder --no-web-widgets
Icon=/usr/local/share/icons/spyder.svg
Path=${HOME}/Desktop
EOF