glue-viz / glue

Linked Data Visualizations Across Multiple Files
http://glueviz.org
Other
742 stars 153 forks source link

Not starting from command prompt #2441

Open gulanaanwar opened 1 year ago

gulanaanwar commented 1 year ago

Describe the bug Hi, I Have installed glueviz using pip command. It says it is successfully installed. However, when I run "glue" on the command prompt, it doesnt seem to do anything. Please tell me what I am doing incorrectly

To Reproduce Steps to reproduce the behavior such as:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior glueviz to open?

Screenshots

Screenshot 2023-09-04 171905

Details:

Additional context Add any other context about the problem here.

jfoster17 commented 1 year ago

Not sure. Is it possible for you to try installing glue some other way (e.g. conda or the standalone package)?

gulanaanwar commented 1 year ago

Hi,

I can download the standalone package but I'm interested in using Glue with edxia, so I'll need the plug ins. Conda also gives me a start up error and it wont load. Not sure where to go from here

Any suggestions?

Thanks, Gulana

On Wed, 6 Sept 2023 at 21:24, Jonathan Foster @.***> wrote:

Not sure. Is it possible for you to try installing glue some other way (e.g. conda or the standalone package https://glueviz.s3.amazonaws.com/installers/2023.06.4/glue%202023.06.4.exe )?

— Reply to this email directly, view it on GitHub https://github.com/glue-viz/glue/issues/2441#issuecomment-1709052170, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDM5BLRXOC2NJNZYCKI5A3XZDLW5ANCNFSM6AAAAAA4KUOB3U . You are receiving this because you authored the thread.Message ID: @.***>

astrofrog commented 1 year ago

@gulanaanwar - could you try and start ipython then do:

from glue import qglue
qglue()

Any luck? (this will help see if there are any errors)

gulanaanwar commented 1 year ago

Just tried it and I get this error,

"ImportError: cannot import name 'qglue' from partially initialized module 'glue' (most likely due to a circular import) (C:\Python\glue.py) [Finished in 94ms]

I'm trying to see if I can deinstall Glue fully and try again but it didn't seem to work

On Thu, 7 Sept 2023 at 12:32, Thomas Robitaille @.***> wrote:

@gulanaanwar https://github.com/gulanaanwar - could you try and start ipython then do:

from glue import qglue qglue()

Any luck? (this will help see if there are any errors)

— Reply to this email directly, view it on GitHub https://github.com/glue-viz/glue/issues/2441#issuecomment-1709988135, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDM5BJBYB2QGHYCSPITJIDXZGWERANCNFSM6AAAAAA4KUOB3U . You are receiving this because you were mentioned.Message ID: @.***>

astrofrog commented 1 year ago

@gulanaanwar - what is the output of 'pip freeze'?

Could you try:

from glue_qt.qglue import qglue
qglue()
gulanaanwar commented 1 year ago

The error gives: "qtpy.QtBindingsNotFoundError: No Qt bindings could be found"

and if i run pip freeze i get

astropy==5.3.2asttokens==2.2.1backcall==0.2.0casa-formats-io==0.2.1click==8.1.7cloudpickle==2.2.1colorama==0.4.6comm==0.1.4contourpy==1.1.0cycler==0.11.0dask==2023.8.0debugpy==1.6.7.post1decorator==5.1.1dill==0.3.7echo==0.8.0edxia==0.1.11et-xmlfile==1.1.0executing==1.2.0fast-histogram==0.11fonttools==4.42.0freetype-py==2.4.0fsspec==2023.6.0glue-core==1.13.1glue-qt==0.1.0glue-vispy-viewers==1.0.7glueviz==1.2.0hsluv==5.0.3imageio==2.31.1importlib-metadata==6.8.0ipykernel==6.25.1ipython==8.14.0ipython-genutils==0.2.0jedi==0.19.0joblib==1.3.2jupyter_client==8.3.0jupyter_core==5.3.1kiwisolver==1.4.4lazy_loader==0.3llvmlite==0.40.1locket==1.0.0matplotlib==3.7.2matplotlib-inline==0.1.6mpl-scatter-density==0.7nest-asyncio==1.5.7networkx==3.1numba==0.57.1numpy==1.24.4openpyxl==3.1.2packaging==23.1pandas==2.0.3parso==0.8.3partd==1.4.0pickleshare==0.7.5Pillow==10.0.0platformdirs==3.10.0prompt-toolkit==3.0.39psutil==5.9.5pure-eval==0.2.2pvextractor==0.3py-expression-eval==0.3.14pyerfa==2.0.0.3Pygments==2.16.1PyOpenGL==3.1.7pyparsing==3.0.9python-dateutil==2.8.2pytz==2023.3PyWavelets==1.4.1pywin32==306PyYAML==6.0.1pyzmq==25.1.1qtconsole==5.4.3QtPy==2.3.1radio-beam==0.3.4scikit-image==0.21.0scikit-learn==1.3.0scipy==1.11.2six==1.16.0spectral-cube==0.6.2stack-data==0.6.2threadpoolctl==3.2.0tifffile==2023.8.12toolz==0.12.0tornado==6.3.3traitlets==5.9.0tzdata==2023.3vispy==0.13.0wcwidth==0.2.6xlrd==2.0.1zipp==3.16.2

On Thu, 7 Sept 2023 at 15:43, Thomas Robitaille @.***> wrote:

@gulanaanwar https://github.com/gulanaanwar - what is the output of 'pip freeze'?

Could you try:

from glue_qt.qglue import qglue qglue()

— Reply to this email directly, view it on GitHub https://github.com/glue-viz/glue/issues/2441#issuecomment-1710280656, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDM5BLA574VUPHWKLJ5MXDXZHMSFANCNFSM6AAAAAA4KUOB3U . You are receiving this because you were mentioned.Message ID: @.***>

astrofrog commented 1 year ago

Could you run pip install PyQt5?

gulanaanwar commented 1 year ago

Wonderful, that fixed my problem!!! Thank you so much for your help.

On Thu, 7 Sept 2023 at 15:53, Thomas Robitaille @.***> wrote:

Could you run pip install PyQt5?

— Reply to this email directly, view it on GitHub https://github.com/glue-viz/glue/issues/2441#issuecomment-1710296749, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDM5BMLMR6VAYOZBH2FXBLXZHNU5ANCNFSM6AAAAAA4KUOB3U . You are receiving this because you were mentioned.Message ID: @.***>

gulanaanwar commented 1 year ago

Hi,

Just running into another issue. Ive downloaded a plugin but am unable to see it when I try to open a file. When I click Plugin Manager I can see the plugin. Is this an issue with the plugin or something I can debug?

Regards, Gulana

On Thu, 7 Sept 2023 at 16:22, hello x @.***> wrote:

Wonderful, that fixed my problem!!! Thank you so much for your help.

On Thu, 7 Sept 2023 at 15:53, Thomas Robitaille @.***> wrote:

Could you run pip install PyQt5?

— Reply to this email directly, view it on GitHub https://github.com/glue-viz/glue/issues/2441#issuecomment-1710296749, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXDM5BMLMR6VAYOZBH2FXBLXZHNU5ANCNFSM6AAAAAA4KUOB3U . You are receiving this because you were mentioned.Message ID: @.***>

dhomeier commented 1 year ago

Just running into another issue. Ive downloaded a plugin but am unable to see it when I try to open a file. When I click Plugin Manager I can see the plugin. Is this an issue with the plugin or something I can debug?

@gulanaanwar could you open a new issue for this problem and close the present one? That will be easier to troubleshoot in its own context. Thanks