-
Hi guys, Greetings. I am learning about python architecture and better practices of how to import packages/modules and I am trying to follow project structures from the community to get the idea. So, my question about flax architecture is related to the option 1
option 2
Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
If I understand what you're asking, what we almost always do for development is to use virtualenvs |
Beta Was this translation helpful? Give feedback.
If I understand what you're asking, what we almost always do for development is to use virtualenvs
(e.g.
mkdir envs; python -m venv my_env; source envs/my_env/bin/activate
thenpip install -e flax_repo_dir/
so that the editable version in the local repo is used by tests during development.