【pipenv】仮想環境の入り方
環境
windows10
vscode
はじめ
vscordのterminalを使ってpipenv仮想環境に入る方法。
1.powershellの変更
はじめは Windows PowerShell になっているため、これを Command Pronpt に変更する。
そして 'Select Default Shell' を選択。
そして 'Command Pronpt' を選択。
そして 'New Terminal' を選択。
すると以下のようにpowershellが変更される。
2.仮想環境作製
'C:\Users\user\Descktop\pipenv'に仮想環境をつくるときを例にとる。
C:\Users\user\Descktop\pipenv>pipenv shell
すると、
(pipenv) C:\Users\user\Desktop\pipenv>
のように仮想環境を作れる。
既存の仮想環境に入るとき
'C:\Users\user\Descktop\pipenv'に仮想環境をすでにつくっているときを例にとる。
この時は以下のように pipenv shell を使っても仮想環境に入れない。
```
C:\Users\user\Descktop\pipenv>pipenv shell
Shell for ####################### already activated.
No action taken to avoid nested environments.
上の例では path:####################### に既に仮想環境が存在していると言われている。
この時は
C:\Users\user\Descktop\pipenv>cd #######################
C:#######################>exit
```
のように仮想環境のpathに移動し、そこでexitをする。
すると、
C:\Users\user\Descktop\pipenv>pipenv shell
(pipenv) C:\Users\user\Desktop\pipenv>
のように再び仮想環境に入れる。
Author And Source
この問題について(【pipenv】仮想環境の入り方), 我々は、より多くの情報をここで見つけました https://qiita.com/ShotaSuzuki-jr/items/daac5ff110dd2c796ef1著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .