Ask Your Question
1

Accessing resources from another project

asked 11 years ago

phn gravatar image

updated 10 years ago

FrédéricC gravatar image

I'm thinking of organizing my code as follows:

  • Project A (private) has all the libraries and common python modules.
  • Projects B, C, D (public) have mostly notebooks that make use of python modules in (A)

I added the absolute path to project A modules in a local.pth file of project B:

~/.local/lib/python2.7/site-packages/local.pth

Also did chmod 755 (read and execute by everyone) on all resources in project A. Testing with python in a console (project B) shows that the path to project A is not added to sys.path. The same works fine when I'm in project A. Any idea how to proceed?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
0

answered 11 years ago

Jeroen Demeyer gravatar image

updated 11 years ago

It works for me.

Adding a directory to ~/.local/lib/python2.7/site-packages/local.pth and starting up Sage shows that the directory in local.pth is indeed added to sys.path. Are you sure your paths are correct?

Preview: (hide)
link
0

answered 11 years ago

phn gravatar image

I confirm that the method above does work when the path listed in local.pth is in the same project as the one where python is executed.

What does not work for me is to add a path to a project "B" folder when I'm running python from project "A". I checked and double-checked the spelling in local.pth.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 11 years ago

Seen: 784 times

Last updated: Feb 06 '14