4
2

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

#2か月pythonを触らなかったらpythonを結構忘れてた。
結構意外でした。思ったよりも忘れている、、、これはまた忘れるかも、、、
そこで今回、設定の仕方をメモしておきます。

#手順
##仮想環境の作成と有効化

インストール(linuxの場合)
$ sudo apt install python3

仮想環境のファイルの作成
$ python3 -m venv 仮想環境の名前

仮想環境を有効にする(linuxの場合)
$ . 仮想環境の名前/bin/activate
以下のように表示されたら仮想環境が有効になっています。
(仮想環境名)パス$ 

仮想環境を終了する。
()$ deactive

##パッケージの管理

パッケージをインストールする。
()$ pip install パッケージ名

インストールされているパッケージを確認する。
()$ pip freeze

インストールされているパッケージのリストを保存する。
()$ pip freeze >> requirements.txt

リストからパッケージをインストールする。
()$ pip install -r requirements.txt

パッケージをアンインストールする。
()$ pip uninstall パッケージ名

#参考
venv: Python 仮想環境管理
↑こっちの方がもっとわかりやすいかも。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?