0
0

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 3 years have passed since last update.

python 入門

Posted at

#python入門

自粛期間もあり、自分のスキルの棚卸しなど含めて、業務に使っているスキルを復習ということで基礎から学習していこうと思います。

環境構築

環境構築はvenvで環境構築をつくり、仮想環境で開発環境を整えます。

作業ディレクトリを作成

mkdir [作業ディレクトリ]

作業ディレクトリ内で仮想環境を作ります。

cd [作業ディレクトリ]

仮想環境を作成

python3 -m venv [任意の名前]

active

仮想環境に入る

source [任意の名前]/bin/activate

仮想環境に入ることが出来たと思うのでPythonのVersionを確認します。
正常に動作していればVersionが表示されます。

python -V
Python 3.7.3

開発環境が出来たので次回からはPythonの文法について学習していこうと思います。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?