I'm not sure if this is the right place to ask, but I can't find anywhere better...
I'm trying to switch from PyCharm to VS Code as my Python IDE. There are a few reasons why, but lets just say I want the experience of using both IDEs.
Some of my projects use an external .py file to provide some common classes to my code. In my scripts that use these files, I add the directory to the python path using sys.path.append(). This allows the code to work as expected, but in the IDE, VS Code doesn't see the external files. In PyCharm, I was able to add a directory for my library directory so I didn't have this issue. Is it possible to do the same thing in VS Code?
My sample script:
I'm trying to switch from PyCharm to VS Code as my Python IDE. There are a few reasons why, but lets just say I want the experience of using both IDEs.
Some of my projects use an external .py file to provide some common classes to my code. In my scripts that use these files, I add the directory to the python path using sys.path.append(). This allows the code to work as expected, but in the IDE, VS Code doesn't see the external files. In PyCharm, I was able to add a directory for my library directory so I didn't have this issue. Is it possible to do the same thing in VS Code?
My sample script:
import sys sys.path.append("/coding/libs") # Adding the directory that holds the mylib.py file import mylib # VS Code can't find this library file x = mylib.MyClass() x.do_something("Bob")Is there a setting in VS Code where I can add extra paths for it to search for files?