如何在ubuntu下安装pycharm

  1. Configure the repository (your correct Ubuntu release name gets inserted automatically):

    echo "deb http://archive.getdeb.net/ubuntu $(lsb_release -cs)-getdeb apps" | sudo tee /etc/apt/sources.list.d/getdeb-apps.list
  2. Retrieve and add the repository's signature key:

    wget -q -O- http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -
  3. Update your package lists:

    sudo apt-get update
  4. Install PyCharm:

    sudo apt-get install pycharm

猜你喜欢

转载自blog.csdn.net/oliver_hong/article/details/80759007