You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Imports should be either relative or absolute. They currently are importing from the local path, like this import atlas when it really should be form . import atlas or from YSOVAR import ATLAS. Currently, you kind of have the source directory in the PYTHONPATH, the python setup.py install will fail.
The text was updated successfully, but these errors were encountered:
Imports should be either relative or absolute. They currently are importing from the local path, like this
import atlas
when it really should beform . import atlas
orfrom YSOVAR import ATLAS
. Currently, you kind of have the source directory in the PYTHONPATH, thepython setup.py install
will fail.The text was updated successfully, but these errors were encountered: