LoginSignup
1
5

More than 5 years have passed since last update.

virtualenvの使い方

Last updated at Posted at 2017-05-02

virtualenv環境の作成

$ pyenv virtualenv (pyenvのversion) (virtualenv-name)

確認

$ pyenv versions

環境の切り替え

# システム全体
$ pyenv global (virtualenv-name)

# カレントディレクトリのみ
$ pyenv local (virtualenv-name)

環境のアンインストール

$ pyenv uninstall (virtualenv-name)
1
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
1
5