This is Gentoo's testing wiki. It is a non-operational environment and its textual content is outdated.
Please visit our production wiki at https://wiki.gentoo.org
PyCharm Community Edition
From Gentoo Wiki (test)
This article is a stub. You can help by expanding it.
PyCharm Community Edition is a powerful, open source, single-language integrated developer environment (IDE) for Python projects created by JetBrains. PyCharm features syntax and error highlighting, auto-indentation, code completion, spell check, and a built-in Python debugger.
Installation
USE flags
There are currently no USE flags available for dev-util/pycharm-community.
Emerge
Install PyCharm:
root #
emerge --ask dev-util/pycharm-community
Trouble Shooting
No JDK Found
If you get the following error message
CODE ERROR: Cannot start PyCharm Community Edition:
No JDK found. Please validate either PYCHARM_JDK, JDK_HOME or JAVA_HOME environment variable points to valid JDK installation.
That means you did not set the JDK
environment variables properly.
If you are using bash
:
FILE
~/.bashrc
export PYCHARM_JDK=`java-config -O`
If you are using fish
:
FILE
~/.config/fish/conf.d/pycharm.fish
set -x PYCHARM_JDK (java-config -O)
See also
- Vim - An advanced command-line text editor capable of syntax highlighting.
External resources
- http://blog.jetbrains.com/pycharm/ - The official PyCharm blog.