1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Ubuntu 24.04 でojを動かす

Posted at

Ubuntuを24.04に上げたらいろいろ動かなくなったのでそのメモ

oj を動かすと失敗するようになった

$ oj --version
Traceback (most recent call last):
  File "/home/kousuke/.local/bin/oj", line 5, in <module>
    from onlinejudge_command.main import main
  File "/home/kousuke/.local/share/pipx/venvs/online-judge-tools/lib/python3.12/site-packages/onlinejudge_command/main.py", line 19, in <module>
    import onlinejudge_command.update_checking as update_checking
  File "/home/kousuke/.local/share/pipx/venvs/online-judge-tools/lib/python3.12/site-packages/onlinejudge_command/update_checking.py", line 1, in <module>
    import distutils.version
ModuleNotFoundError: No module named 'distutils'

入れ直したりを試していたのだけど、うまく行かず、調べてみるとpython3.13からdistutilsがなくなってsetuptoolsをいれるとよいとのこと

ということでやってみる。
最近はpipxというのがあるらしいですね。pip3 install online-judge-tools するとpipxを奨められたのでこちらでやってみる。

sudo apt install pipx
pipx install online-judge-tools
$HOME/.local/share/pipx/venvs/online-judge-tools/bin/python -m pip install setuptools

最初のpipx install$HOME/.local/bin/oj ができる。
これでoj --versionするとやはり失敗します。
ojの中をみるとvenvの環境をつくっているのがわかるので、その環境にsetuptoolsを入れると動きました。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?