バージョンの確認
インストールを確認し、mojo --versionを実行します
「バージョンの確認」はCoddyKit上の無料Mojo Academyレッスンです。 これはレッスン3/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはMojo Academy学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Mojo Academyコースには全4レッスンが含まれています。
このレッスンの一部はまだ翻訳されておらず、英語で表示されています。
Trust, Then Verify
An install is not done until you prove it works. The fastest proof is asking Mojo to report its own version. ✅
The Version Command
Inside your activated project, run mojo with the --version flag. A clean version string means the compiler is reachable.
mojo --versionReading the Output
The output names the language and a version number like 24.x. That number tells you exactly which release you are on.
mojo 24.4.0 (abc123)Why Versions Matter
Mojo is young and evolving fast. Knowing your version helps you match tutorials and report issues that actually apply to you.
Check Without the Shell
Not in a magic shell? Run it through the project manager instead, so the right toolchain answers with magic run.
magic run mojo --versionCheck the CLI Too
You can also confirm the manager itself. Asking magic for its version separates a CLI problem from a Mojo problem.
magic --versionWhen mojo Is Not Found
A not-found error usually means you are outside the project. Run magic shell first, or prefix the command with magic run.
Keeping Mojo Updated
New releases land often. Refresh your project's packages with magic update to move to the latest compatible Mojo.
magic updateSee What Is Installed
Curious about every dependency? magic list shows the packages and exact versions your project currently pins.
magic listNote It for Later
Jot down your version when following a guide. If something behaves oddly, that version number is the first clue to share.
Try a Nightly Build
Want the newest features early? Modular offers a nightly channel, though those builds change fast and can be less stable.
Quick Check
Recall the flag that makes Mojo print which release you have installed.
Recap
You verified the install with mojo --version, learned to read the number, and can refresh it with magic update. Confirmed! 🎯
よくある質問
「バージョンの確認」レッスンは無料ですか?
はい。「バージョンの確認」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Mojo Academyコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Mojo Academyコースには全4レッスンが含まれています。
「バージョンの確認」で何を学びますか?
インストールを確認し、mojo --versionを実行します ブラウザで直接実行するハンズオンコードでMojo Academyを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。
Mojo Academyを始めるのに経験は必要ですか?
事前経験は必要ありません。CoddyKitのMojo Academyは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン3/4です。
「バージョンの確認」レッスンにはどのくらい時間がかかりますか?
ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。
このMojo Academyレッスンでコードを書いて実行できますか?
はい。すべてのMojo Academyレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。