Add Pycharm CE app
parent
edbbf0cf2f
commit
157e1ba1cc
@ -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.
|
@ -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.
|
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
@ -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
|
@ -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
|
@ -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"
|
@ -0,0 +1 @@
|
||||
https://www.jetbrains.com/pycharm/
|
Loading…
Reference in New Issue