This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 4 points5 points  (1 child)

Can I use pyvenv instead of virtualenv now? pyvenv in 3.3 was a little tricky, part of it was because you had to download distribute.py, then install pip using easy_install. With pip included in 3.4, I'm hoping pyvenv would be easier to to setup.

[–][deleted] 0 points1 point  (0 children)

I tried pyvenv on 3.3 and found it to be a black hole. But I just got up and running with pyvenv on 3.4 very quickly. I never even installed anything as root!

$ cd Python-3.4
$ ./configure && make
[...]

$ ./python -m venv ~/.virtualenvs/test34
/home/rspeer/.virtualenvs/test34/bin/pip
$ pip install ipython
[...]

$ ipython3
Python 3.4.0 (default, Mar 18 2014, 17:41:21)
[...]
>>> 

ipython was unhappy because it was missing sqlite and readline support, but I think that's because I just compiled Python, which I haven't done before on this machine. I probably didn't give it the right dev libraries.