LoginSignup
0
0

More than 5 years have passed since last update.

Pycharmで「QStandardPaths: XDG_RUNTIME_DIR points to ... 0700 permissions.」というエラーが出たときの対処法

Posted at

起こったこと & したこと

Ubuntu & PycharmでCNNしようとしたらこんなエラーが。

QStandardPaths: XDG_RUNTIME_DIR points to non-existing path'/run/user/1000/snap.pycharm-community', please create it with 0700 permissions.

どうやらXDG_RUNTIME_DIRというのが/run/user/1000にあるはずのsnap.pycharm-communityを示してるけどないらしい。(適当)0700権限で作ってね、らしいので作る。

cd /run/user/1000
mkdir snap.pycharm-community
chmod 700 snap.pycharm-community

このあと起動したら大丈夫でした。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0