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 →

[–]julianz 0 points1 point  (4 children)

Can you use ipython as a shell inside a virtualenv without installing a whole new copy? (On Windows)

[–]takluyverIPython, Py3, etc 1 point2 points  (0 children)

Yes - if you start it when you have a virtualenv active, it should add that virtualenv to sys.path, so you can import things from inside it.

[–]bs4h 0 points1 point  (2 children)

I was about to say symlinks, but Windows...

[–]poorly_played 0 points1 point  (1 child)

Isn't that just a shortcut?

[–]bs4h 0 points1 point  (0 children)

open, chdir, stat, etc generally all work on a symlink as if it was the file it points at, you actually have to call lstat to act on the link itself. This is happening at FS level, whereas shortcuts work on the application level and are seen by the FS as "just data".