私は自分のプロジェクトの周りにvirtualenvを作成しましたが、私はそれを有効にしようとするとできません。 これは構文やフォルダの場所だけかもしれませんが、私はすぐに困惑しています。virtualenvで問題が発生しました - 有効にできません
ここでは、virtualenvを作成してvenvと呼ぶことができます。すべてがうまくいき、実行して起動しようとしましたsource venv/bin/activate
システムパスと関係がありますが、何を指しているのかわかりません(パスの編集方法はわかります) 。私はpython 7/windows os、virtual env 2.2.x ありがとうございます。
Processing dependencies for virtualenv Finished processing dependencies for virtualenv c:\testdjangoproj\mysite>virtualenv --no-site-packages venv The --no-site-packages flag is deprecated; it is now the default behavior. Using real prefix 'C:\\Program Files (x86)\\Python' New python executable in venv\Scripts\python.exe File venv\Lib\distutils\distutils.cfg exists with different content; not overwri ting Installing setuptools.................done. Installing pip...................done. c:\testdjangoproj\mysite>source venv/bin/activate 'source' is not recognized as an internal or external command, operable program or batch file. c:\testdjangoproj\mysite>source venv/bin/activate 'source' is not recognized as an internal or external command, operable program or batch file. c:\testdjangoproj\mysite>source mysite/bin/activate 'source' is not recognized as an internal or external command, operable program or batch file. c:\testdjangoproj\mysite>
このドキュメントは本当にPOSIXとWindowsシステムの両方のために役立ちます:https://virtualenv.pypa.io/en/stable/userguide/あなたはジョンそれを釘付け – Blairg23