-
Hello! I'm new using micropy & micropython and it's been a nice journey so far. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @fcasals,
Your assumption is correct. Generally speaking, this means:
When executing
I'd be happy to clarify if needed. Thank you! Footnotes
|
Beta Was this translation helpful? Give feedback.
Hi @fcasals,
Your assumption is correct.
micropy
maintains a central local repository of stubs that is located under a.micropy/stubs
folder that is created in the platform dependent user home directory1.Generally speaking, this means:
~/.micropy/stubs/
on *nix platformsc:\Users\MyUser\.micropy\stubs
on windows platforms.When executing
micropy add
, micropy will:Ensure the stub exists in the central stubs repository (retrieving it if necessary).
Check if the current working directory is a micropy-enabled project:
If it is a micropy project, also associate the st…