11
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

0. システムのアップデート

開始する前に、システムが最新であることを確認することが常に良いアイデアです。ターミナルを開いて、次のコマンドを実行してください。

sudo apt update && sudo apt upgrade

1. Python3

バージョンの確認
python3 --version
>>> Python 3.10.12

バージョンが返ってこない場合は、インストールを行う。
(バージョンは3.10でも良いと思います)

sudo apt install python3.9

2. pip

pipのバージョン確認
pip3 --version
>>> pip 22.0.2 from /usr/lib/python3/dist-packages/pip (python 3.10)

こちらもバージョンが返ってこない場合は、インストールを行う。

sudo apt install python3-pip

3. 仮想環境の作成

python3 -m venv venv

もし上記コマンドで仮想環境作成できない場合。

sudo apt install python3.9-venv

4. 仮想環境に入る

source venv/bin/activate

上記コマンド実行後、(venv)が付けば成功:sparkles:

(venv)user@userName:~/TEST/sample_python$

参考サイト

最後に

Ubuntuで作業する際、間違えやすかったのが
仮想環境に入る時のコマンド...。

./venv/Scripts/activate

に慣れすぎてなんでーーーーって何回かなりました笑

仮想環境から出る際のコマンドは同じです。
deactivate
11
5
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
11
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?