Quantcast
Channel: Active questions tagged fish - Stack Overflow
Viewing all articles
Browse latest Browse all 106

Append *multiple* paths to PYTHONPATH in fish

$
0
0

Here I read how to append to PYTHONPATH in fish, and that works fine for one string.

However, if I do this:

set --export PYTHONPATH $PYTHONPATH path1 path2

I get this:

>> import os>> os.environ["PYTHONPATH"]'path1\x1epath2'

Alternatively:

$ python -c "import os; print os.environ['PYTHONPATH']"path1path2

What's wrong here?


Viewing all articles
Browse latest Browse all 106

Trending Articles