LoginSignup
0
0

Pythonの仮想環境作り

Posted at

pythonで仮想環境を作ってパッケージをインストールする方法

仮想環境を作成

python3 -m venv myenv

仮想環境を起動

source myenv/bin/activate

仮想環境でパッケージをインストール

pip install $パッケージ名
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