question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

How to add path for a module

See original GitHub issue

I 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:closed
  • Created 3 years ago
  • Reactions:3
  • Comments:14 (7 by maintainers)

github_iconTop GitHub Comments

1reaction
alexhallamcommented, Feb 28, 2022

Thanks you! I think that did it.

1reaction
pawamoycommented, Feb 28, 2022

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).

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found