How should I be setting up my environment? #273
Unanswered
gordonwatts
asked this question in
Q&A
Replies: 1 comment 4 replies
-
Fengping has a development ver of coffea which uses your local unix id (and persistent home directory). I don't know if that's going to solve your problem, however, but maybe a step in that direction. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My code requires a fair number of dependencies. So each time a container is created, I have to do a
pip install -e .[test]
, basically. And when the container is torn down, everything is removed. While not impossible, this is a bit of a pain for two reasons:pip install
, I get whatever is latest on pypi.Python virtual environments were created to solve this problem. And the containers user space is persistent (thank goodness). However, the jupyter server only starts in the global context. So a virtual env is only useful if you are doing everything by command line.
I'm wondering how others shape their workflow?
Beta Was this translation helpful? Give feedback.
All reactions