Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9194299
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T21:22:45+00:00 2026-06-17T21:22:45+00:00

I wanted to know if you can use the import statement in python from

  • 0

I wanted to know if you can use the import statement in python from a directory that is not your local directory if that directory is not a package? Also, do all the directories on your system path have to be packages? If you add a relative path to your system path, what is it relative to?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T21:22:46+00:00Added an answer on June 17, 2026 at 9:22 pm

    you can alter sys.path in order to achieve all the results you are asking for.

    1. Yes you can. To add a directory that is not your local directory:

      import sys
      sys.path += '/your_path/your_subpath/'  # absolute paths
      import your_package
      

      If you need to load the module from an arbitrary path in the filesystem without adding it to sys.path you can use also imp.load_module

    2. do all the directories on your system path have to be packages? No, they do not

    3. If you add a relative path to your system path, what is it relative to?

      to the directory containing the script that was used to invoke the Python interpreter.
      I suggest, however, to set it in this way:

      import sys,os
      sys.path.append(os.path.realpath('..'))
      

      or from the path of the script:

      import sys,os
      sys.path.append(os.path.realpath(os.path.join(os.path.dirname(sys.argv[0]), '..')))
      

      both the examples work also from interactive shells. Both examples ensure the relative path is what you meant, regardless of the OS

      see also this post for more details on relative paths in python

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We know that we can use a concept Java Package, but I just wanted
Just wanted to know if I can use Linq on Javascript arrays. If not
Thanks for looking at this question. I wanted to know how can I use
I wanted to know that how can we find how much time android device
In my game I know I can use conditions for this, but I wanted
I wanted to know how I can use an html file and use it
Just wanted to know if I can use Cufon in Dreamweaver via plugin or
I wanted to know how can we get the index of the array if
Hello I am new to MATLAB , I wanted to know how can I
To make a poll form using an applet, i wanted to know how can

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.