2
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?

More than 1 year has passed since last update.

Pythonがなくなったと思った話

Posted at

Pythonがない

$ python -v
  zsh: command not found: python

だけどpyenv versionsすると確かにsystemにPythonが入ってる。

$ pyenv versions
  system
* 3.11.2 (set by /Users/username/.pyenv/version)

もしや…

$ which python3
/usr/bin/python3

エイリアスを登録すればいい話だった。~/.zshrcalias python='python3'を書き込んで解決。

echo "alias python='python3'" >> ~/.zshrc
2
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
2
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?