pyvenv-3.4 returned non-zero exit status 1

You are missing the venv lib for python 3.4, just run:

$ apt-get install python3.4-dev python3.4-venv

And then create your virtualenv

python3.4 -m venv myVenv

Leave a Comment