Check project tree. Hello. I'm trying to run example.py , but have problems with importing src. It can't find module. I can solve this problem, writing:
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
now sys.path have path to folder of the project D:\...\cubic_reg-master, and may check all packages and modules in project. But I don't want to write it in every folder/every script. Trying to find how to config Build System or project.sublime-settings.
p.s. Have worked in Pycharm, and trying Sublime Text, as I understand Pycharm add path automatically.
who seeks will always find
Decision is to run python with arg -c; make there settings and run file
Here is mine Build System file:
}
p.s. probably it's dangerous solution, I will be glad to look at better ways
p.p.s. for plugin sublime Repl same settings work, but should use $folder and $file_basename:
... }
----------------------------------------------------------------------------------------------------------------------------------- six months later
-----------------------------------------------------------------------------------------------------------------------------------
Found better decisions:
1) build system have option 'env' first idea is to write "env": {"PYTHONPATH": "$project_path"}, but it don't know such variable $project_path for env opt, so this works
disadvantages: incorrect working_dir - if you create or read files - should consider it
2) better way is to use some commands in cmd:
3) add PYTHONPATH to mine_proj.sublime-project with plugin "environment settings"
use there real path or %project_path% (.sublime project stores in project, to use %project_path% turn on "set_sublime_variables")
EnvironmentSettings - User
mine_proj.sublime-project: add only "settings" part