PyCharm no Linux

Instalação do PyCharm Community no Linux
Voltar

Passo a passo:

  1. Pré-requisitos (deb): sudo apt install python3-dev python3-venv wget
  2. cd Downloads && wget https://download.jetbrains.com/python/pycharm-community-2022.2.1.tar.gz
  3. tar xvzf pycharm-community*.tar.gz && mv pycharm-community*/ pycharm-community
  4. sudo mv pycharm-community /opt
  5. sudo ln -s /opt/pycharm-community/bin/pycharm.sh /usr/bin/pycharm
  6. Atalho: sudo nano /usr/share/applications/jetbrains-pycharm-ce.desktop
    
    Inserir o seguinte conteúdo no arquivo. Ctrl+k para fechar, e salvá-lo
    [Desktop Entry]
    Version=1.0
    Type=Application
    Name=PyCharm Community Edition
    Icon=/opt/pycharm-community/bin/pycharm.png
    Exec="/opt/pycharm-community/bin/pycharm.sh" %f
    Comment=PyCharm Community Python IDE
    Categories=Development;IDE;
    Terminal=false
    StartupWMClass=jetbrains-pycharm-ce
                        

Elaborado por Mateus Schwede
ubsocial.github.io