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

python 仮想環境のメリット・作り方・削除方法まとめ

Posted at

メリット

ローカル環境で独立した環境を楽に作成できる。
他のライブラリとの競合を起こさない。

作り方

linux環境の場合

ディレクトリ移動

cd /home/nkuser/target

仮想環境作成

python -m venv myenv

仮想環境アクティブ

source myenv/bin/activate

必要なライブラリをインストール

pip ~~~~~~ほにゃらら

完了
インストールしたライブラリ一覧を抽出する

pip freeze > requirements.txt

ライブラリ一覧からライブラリを一斉インストールする。※これで一個ずつライブラリをインストールする面倒な動作を省ける。

pip install -r requirements.txt

windows環境の場合

クトリ移動

cd /home/nkuser/target

仮想環境作成

python -m venv myenv

仮想環境アクティブ

myenv\Scripts\activate

必要なライブラリをインストール

pip ~~~~~~ほにゃらら

完了
インストールしたライブラリ一覧を抽出する

pip freeze > requirements.txt

ライブラリ一覧からライブラリを一斉インストールする。※これで一個ずつライブラリをインストールする面倒な動作を省ける。

pip install -r requirements.txt

仮想環境終了

deactivate

削除方法

ディレクトリ選択して削除でOK。

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