I am working on a pull request for sympy
, so I have cloned the repo and I have modified some code. Now I want to import my own sympy from my git repo. I am very confused by these answers as they seem to apply to modules that are contained in a single .py
file. Here, instead, we are dealing with a bigger package which has a __init__.py
in a directory called SOMEPATH/sympy
...
The question is how do I import sympy from this particular folder, possibly without having to install it via the setup.py script (which would be needed at every modification of the code, hence very painful).
Thanks