linuxのpython仮想環境について

linuxのpython仮想環境について

仮想環境の作成
$ cd [project dir]
$ python3 -m venv [newenvname]

仮想環境に突入する
$ source [newenvname]/bin/activate

仮想環境から出る
([newenvname])$ deactivate

たったこれだけ❗

未分類

Posted by admin8admin