How can I set PYTHONPATH in fish?
The following works in bash: ~$ echo $PYTHONPATH <nothing> ~$ export PYTHONPATH=/path/to/test/folder ~$ echo $PYTHONPATH /path/to/test/folder ~$ python -m test_script hello world But not in fish: Welcome to fish, the friendly interactive shell Type help for instructions on how to use fish ~> echo $PYTHONPATH <nothing> ~> set --universal PYTHONPATH /path/to/test/folder ~> echo $PYTHONPATH /path/to/test/folder ~> python -m test_script /usr/bin/python: No module named test_script I've tried set , set --global and set --universal . How can I set PYTHONPATH in fish? (If it matters, I'm running