How to add path for a module
See original GitHub issueI think this is a fairly simple question but I haven’t been able to solve it. If I have my python package in a different directory than my docs folder, how do I tell mkdocstrings to look at where the python package is?
I’m currently using the below in my .yaml file
plugins:
- mkdocstrings:
handlers:
python:
setup_commands:
- import sys
- sys.path.append('../')
Issue Analytics
- State:
- Created 3 years ago
- Reactions:3
- Comments:14 (7 by maintainers)
Top Results From Across the Web
Understanding Python Module Search Path
Introduction to Python module search path · Place module.py in the folder where the program will execute. · Include the folder that contains...
Read more >Check and add the module search path with sys.path in Python
Add new module search path with sys.path.append() ... Since sys.path is just a list, you can add new paths. In this example, the...
Read more >The Module Search Path
In this video, you're going to explore the module search path. ... Put mod.py in the directory where the input script is located, ......
Read more >Expand Python Search Path to Other Source
In your program, use sys.path.append('/path/to/search') to add the names of directories you want Python to search for imported modules.
Read more >How to add a Python module to syspath?
Add the following line to your ~/.profile file. export PYTHONPATH=$PYTHONPATH:/path/you/want/to/add. Subdirectories. From within a package, ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks you! I think that did it.
You are mixing Python statements with shell commands in
setup_commands
, it triggers SyntaxError. You must install your dependencie the same way you instal mkdocstrings (in your workflow steps for example).