Python Forum
SOLVED: VS Code: Adding external directories to project?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
SOLVED: VS Code: Adding external directories to project?
#1
Question 
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:

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?
Reply
#2
I use vscodium and to add extra paths is in settings extentions python
Here is a link I found
https://stackoverflow.com/questions/4147...ython-path
Calab likes this post
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts


Reply
#3
(Jul-31-2024, 07:06 PM)menator01 Wrote: I use vscodium and to add extra paths is in settings extentions python
Here is a link I found
https://stackoverflow.com/questions/4147...ython-path
Thanks for the link. It was very helpful.

I ended up creating a .env file that specified the directory I wanted in the PYTHONPATH.
menator01 likes this post
Reply
#4
I never had any problems using

import sys

sys.path.append("/path/2/mylibs")
in Idle, always works fine! I have imported so many self-made functions!

But I never imported classes, because I never wrote any!

What os are you using?
Reply
#5
(Jul-31-2024, 10:50 PM)Pedroski55 Wrote: I never had any problems using

import sys

sys.path.append("/path/2/mylibs")
in Idle, always works fine! I have imported so many self-made functions!

But I never imported classes, because I never wrote any!

What os are you using?
I'm using Windows 10 and VS Code v1.92.0.

The sys.path.append lets the code finds the files when I run it, but VS Code doesn't find the files and marks the import as an issue. This stops intellisense from working on the methods in that file.

Adding the directory containing my files to the python path using a .env file lets intellisense work normally.
Reply
#6
Install the folder containing the frequently used .py files as a local project using pip.

https://pip.pypa.io/en/stable/topics/loc...-installs/
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Code Completion in Visual Studio for External Libraries mjakov 0 565 Aug-25-2024, 02:48 PM
Last Post: mjakov
  rename same file names in different directories elnk 5 2,337 Jul-12-2024, 01:43 PM
Last Post: snippsat
  [SOLVED] Loop through directories and files one level down? Winfried 3 2,104 Apr-28-2024, 02:31 PM
Last Post: Gribouillis
  Organization of project directories wotoko 3 1,446 Mar-02-2024, 03:34 PM
Last Post: Larz60+
  programming OpenOffice with External Python Project bobthebuilder44 1 1,303 Apr-07-2023, 06:02 AM
Last Post: buran
  Listing directories (as a text file) kiwi99 1 1,375 Feb-17-2023, 12:58 PM
Last Post: Larz60+
  [Solved]Help to iterate through code Extra 7 2,191 Dec-11-2022, 10:55 PM
Last Post: deanhystad
  [Solved] Trying to rerun a snippet of code paracel 3 1,919 Jul-17-2022, 01:49 PM
Last Post: paracel
  Adding string after every 3rd charater [SOLVED] AlphaInc 2 2,021 Jul-11-2022, 09:22 AM
Last Post: ibreeden
  I need to copy all the directories that do not match the pattern tester_V 7 4,540 Feb-04-2022, 06:26 PM
Last Post: tester_V

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020