tl;dr
Use system’s python instead of anaconda’s one when using
python3 -m venv
to create virtual envs. (or use--without-pip
option)
venv を使うときには Anaconda 環境の Python だとコケるので,システムの Python を使うか,
--without-pip
オプションをつける必要がある.
Log
macOS Sierra 10.12.4
, Miniconda3
For tiny web app with flask, anaconda seemed overkill.
venv
is preferable…
noo…
--without-pip
worked, but manual instllation of pip is needed.
What is that
ensurepip
?
OK, anaconda’s python cannot work in that way because of this
(deleted lines that adds conda path to
$PATH
)