Skip to content

Instantly share code, notes, and snippets.

@Liyuu8
Created October 16, 2018 17:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Liyuu8/fd4df05dfd84a17177ddca23f75cdde9 to your computer and use it in GitHub Desktop.
Save Liyuu8/fd4df05dfd84a17177ddca23f75cdde9 to your computer and use it in GitHub Desktop.
# venv 環境の作成 (VENV: 仮想環境の名前)
$ python3.7 -m venv VENV
# venv 環境の有効化
$ source venv/bin/activate
(VENV) $
# venv 環境の無効化
(VENV) $ deactivate
# venv 環境の削除
$ rm -R VENV
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment