I\'m in Kubuntu 14.04 , I want to create a virtualenv with python3.4. I did with python2.7 before in other folder. But when I try:
pyvenv-3.4 venv
This worked for me in python 3.6 and OSX
$ python -m venv --without-pip my_dir $ source my_dir/bin/activate $ curl https://bootstrap.pypa.io/get-pip.py | python $ deactivate $ source my_dir/bin/activate (my_dir) user$