Log file Viewer
Help
|
Karma
| Search:
#pypa logs for Saturday the 14th of June, 2014
(
Back to #pypa overview
) (
Back to channel listing
) (
Animate logs
)
[
07:18:38
] <
mrloam
> !logs
[
07:18:38
] <
pmxbot
> http://chat-logs.dcpython.org/channel/pypa
[
11:07:06
] <
aclark
> !m pmxbot
[
11:07:06
] <
pmxbot
> you're doing good work, pmxbot!
[
14:34:09
] <
baltais
> To change a virtualenvs main bin?
[
14:34:35
] <
baltais
> That should have been prefixed by: "Hi is there a way to..." :)
[
14:37:04
] <
tomprince
> Change it how?
[
14:39:11
] <
baltais
> Point it to a different python binary
[
14:40:02
] <
baltais
> What i'm trying to do is get a newer version of python on my Ubuntu Server 12.04LTS
[
14:40:29
] <
baltais
> Ran into some trouble a django plugin not working on python3.2
[
14:40:51
] <
baltais
> So i installed python 3.4.1 to /opt/python3.4.1
[
14:41:22
] <
baltais
> Though it seems i can't use my previous virtualenv as it seems its not compatable with the new python?
[
14:43:19
] <
tomprince
> 'virtualenv -p <python-binary>' will create a virtualenv using that python.
[
14:43:52
] <
tomprince
> Or, <python-binary> /path/to/virtualenv.py
[
14:46:32
] <
baltais
> I tried the former and it gave an error trying to figure out how to pastebin my console output
[
14:51:20
] <
baltais
> paste.ubuntu.com/7644286
[
14:52:04
] <
baltais
> The command was:
[
14:52:52
] <
baltais
> mkvirtualenv spektrs-p34 /opt/python3.4/bin/python3 | # pipe output to pastebin
[
14:54:29
] <
tomprince
> Maybe you need a newer version of virtualenv?
[
14:55:01
] <
tomprince
> You could probably use pyvenv that is in the stdlib in 3.4.
[
15:02:01
] <
baltais
> i call black magick on this one
[
15:02:21
] <
baltais
> But yeah, created the env, downloading the dependecies
[
15:02:57
] <
baltais
> Is this env aimed to replace the old virtualenv packadge?
[
15:06:57
] <
tomprince
> I think so. virtualenv's implementation is somewhat hack-ish. pyvenv is integrated in the core interpreter.
[
15:07:08
] <
tomprince
> But it is py3.3+ only, so most poeple can't use it.
[
15:21:52
] <
baltais
> Turns out virtualenv wraps pyvenv
[
15:21:59
] <
baltais
> subclasses
[
15:22:07
] <
baltais
> *
[
15:23:00
] <
Ivo
> does not
[
15:24:13
] <
Ivo
> baltais: stop trying to replace the virtualenv, just recreate it
[
15:45:30
] <
baltais
> Ivo: i did :)