diff --git a/apps/Pycharm CE/credits b/apps/Pycharm CE/credits new file mode 100644 index 0000000..bf33940 --- /dev/null +++ b/apps/Pycharm CE/credits @@ -0,0 +1,2 @@ +Thanks to gam3t3chelectronicshobbyhouse a.k.a 'Gam3t3ch' for "Installing PyCharm on Raspberry Pi 4" from element14. Also, fabianmendes for introducing it into pi-apps. +Pycharm Community EDITION (product, created and published by JetBrains. Developed with drive and IntelliJ IDEA) Copyright © 2000-2020 JetBrains s.r.o. diff --git a/apps/Pycharm CE/description b/apps/Pycharm CE/description new file mode 100644 index 0000000..50a98a4 --- /dev/null +++ b/apps/Pycharm CE/description @@ -0,0 +1,4 @@ +Python Community Edition IDE for Professional and Educational Developers. +To run this app just go to Menu > Programming. Or just run on terminal: "./opt/pycharm-community/bin/pycharm.sh" + +You must to configurate the IDE to run each script ("py" file), or create a new environment. For Educational purposes, you must to install the "EDUtools" plugin. Go to the right below corner from the Pycharm start up portal: Configurate > Plugins > Search for: EDUtools > Install it and restart the IDE. Then you will able to select "Learn and Teach" for courses. diff --git a/apps/Pycharm CE/icon-24.png b/apps/Pycharm CE/icon-24.png new file mode 100644 index 0000000..1c08b09 Binary files /dev/null and b/apps/Pycharm CE/icon-24.png differ diff --git a/apps/Pycharm CE/icon-64.png b/apps/Pycharm CE/icon-64.png new file mode 100644 index 0000000..964b26b Binary files /dev/null and b/apps/Pycharm CE/icon-64.png differ diff --git a/apps/Pycharm CE/install-32 b/apps/Pycharm CE/install-32 new file mode 100755 index 0000000..46191ad --- /dev/null +++ b/apps/Pycharm CE/install-32 @@ -0,0 +1,42 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +filename='pycharm-community-2018.3.7' + +rm -f $filename.tar.gz 2>/dev/null +sudo rm -rf /opt/pycharm-community pycharm-community ${filename} +#download the 2018.3.7 version "tar.gz" file +wget https://download.jetbrains.com/python/${filename}.tar.gz || error "Failed to downloading file. Make sure 'wget' is installed and verify your Internet Network Connection" + +#extract and rename pycharm-community folder +tar xvzf ${filename}.tar.gz || error "Failed to extract downloaded ${filename} files" +rm -f ${filename}.tar.gz +sudo mv ${filename} /opt/pycharm-community || error "Failed moving pycharm-community to /opt/pycharm-community" + +#enter pycharm-community folder +cd /opt/pycharm-community || error "Failed to enter pycharm-community folder!" + +# Get dependencies +"${DIRECTORY}/pkg-install" "python-pip openjdk-11-jdk" "$(dirname "$0")" || exit 1 + + +# Installing the software with permissions +cd bin || error "Failed to enter to bin directory" +chmod a+x ./pycharm.sh || error "Failed to run ./pycharm giving permission" + +echo "[Desktop Entry] +Version=1.0 +Type=Application +Name=PyCharm Community Edition +Icon=/opt/pycharm-community/bin/pycharm.svg +Exec=/opt/pycharm-community/bin/pycharm.sh %f +Comment=Python IDE for Professional Developers +Categories=Development;IDE; +Terminal=false +StartupWMClass=jetbrains-pycharm-ce" > ~/.local/share/applications/jetbrains-pycharm-ce.desktop diff --git a/apps/Pycharm CE/install-64 b/apps/Pycharm CE/install-64 new file mode 100755 index 0000000..9c3cc32 --- /dev/null +++ b/apps/Pycharm CE/install-64 @@ -0,0 +1,42 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +filename='pycharm-community-2020.2.3' + +rm -f $filename.tar.gz 2>/dev/null +sudo rm -rf /opt/pycharm-community pycharm-community ${filename} +#download the 2018.3.7 version "tar.gz" file +wget https://download.jetbrains.com/python/${filename}.tar.gz || error "Failed to downloading file. Make sure 'wget' is installed and verify your Internet Network Connection" + +#extract and rename pycharm-community folder +tar xvzf ${filename}.tar.gz || error "Failed to extract downloaded ${filename} files" +rm -f ${filename}.tar.gz +sudo mv ${filename} /opt/pycharm-community || error "Failed moving pycharm-community to /opt/pycharm-community" + +#enter pycharm-community folder +cd /opt/pycharm-community || error "Failed to enter pycharm-community folder!" + +# Get dependencies +"${DIRECTORY}/pkg-install" "python-pip openjdk-11-jdk" "$(dirname "$0")" || exit 1 + + +# Installing the software with permissions +cd bin || error "Failed to enter to bin directory" +chmod a+x ./pycharm.sh || error "Failed to run ./pycharm giving permission" + +echo "[Desktop Entry] +Version=1.0 +Type=Application +Name=PyCharm Community Edition +Icon=/opt/pycharm-community/bin/pycharm.svg +Exec=/opt/pycharm-community/bin/pycharm.sh %f +Comment=Python IDE for Professional Developers +Categories=Development;IDE; +Terminal=false +StartupWMClass=jetbrains-pycharm-ce" > ~/.local/share/applications/jetbrains-pycharm-ce.desktop diff --git a/apps/Pycharm CE/uninstall b/apps/Pycharm CE/uninstall new file mode 100755 index 0000000..0d062d7 --- /dev/null +++ b/apps/Pycharm CE/uninstall @@ -0,0 +1,14 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +#if your app installs any packages, keep this command here so those packages will be removed. +"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 + +#deleting /opt/pycharm-community directory +sudo rm -rf /opt/pycharm-community || error "Failed to delete /opt/pycharm-community directory" diff --git a/apps/Pycharm CE/website b/apps/Pycharm CE/website new file mode 100644 index 0000000..c669ed0 --- /dev/null +++ b/apps/Pycharm CE/website @@ -0,0 +1 @@ +https://www.jetbrains.com/pycharm/