Git Product home page Git Product logo

Comments (13)

SimonDanisch avatar SimonDanisch commented on June 25, 2024

Are you sure Pkg.checkout("Images", "sd/fileio") was successfull?

from glvisualize.jl.

musm avatar musm commented on June 25, 2024

So I redid the installation procedure. Now this is the error I'm getting with testing the package

julia> Pkg.test("GLVisualize")
INFO: Testing GLVisualize
INFO: Recompiling stale cache file C:\Users\mmoh\.julia\lib\v0.5\MeshIO.ji for module MeshIO.
Barplot
3d dot particles
ERROR: LoadError: LoadError: MethodError: `*` has no method matching *(::FixedSizeArrays.Mat{4,4,Float32}, ::GeometryTypes.HyperRectangle{3,Float32})
Closest candidates are:
  *(::Any, ::Any, ::Any, ::Any...)
  *{T,M,N,K}(::FixedSizeArrays.Mat{M,N,T}, ::FixedSizeArrays.Mat{N,K,T})
  *{T,M,N,O,K}(::FixedSizeArrays.FixedArray{T,2,Tuple{M,N}}, ::FixedSizeArrays.FixedArray{T,2,Tuple{O,K}})
  ...
 in consume at C:\Users\mmoh\.julia\v0.5\GLAbstraction\src\GLUtils.jl:109
 in lift at C:\Users\mmoh\.julia\v0.5\Reactive\src\Reactive.jl:362
 in default_boundingbox at C:\Users\mmoh\.julia\v0.5\GLVisualize\src\utils.jl:61
 in visualize at C:\Users\mmoh\.julia\v0.5\GLVisualize\src\utils.jl:18
 in dots_data at C:\Users\mmoh\.julia\v0.5\GLVisualize\test\all_tests.jl:23
 in include at boot.jl:260
 in include_from_node1 at loading.jl:271
 in include at boot.jl:260
 in include_from_node1 at loading.jl:271
 in process_options at client.jl:308
 in _start at client.jl:411
while loading C:\Users\mmoh\.julia\v0.5\GLVisualize\test\all_tests.jl, in expression starting on line 25
while loading C:\Users\mmoh\.julia\v0.5\GLVisualize\test\runtests.jl, in expression starting on line 12
============================================[ ERROR: GLVisualize ]=============================================

failed process: Process(`'C:\Julia\Julia-0.5.0-dev\bin\julia' --check-bounds=yes --code-coverage=none --color=yes 'C:\Users\mmoh\.julia\v0.5\GLVisualize\test\runtests.jl'`, ProcessExited(1)) [1]

===============================================================================================================
ERROR: GLVisualize had test errors
 in error at error.jl:21

from glvisualize.jl.

SimonDanisch avatar SimonDanisch commented on June 25, 2024

My bad! Forgot to push some commits.
Can you checkout GLVisualize and GeometryTypes?!

from glvisualize.jl.

musm avatar musm commented on June 25, 2024

Hmm I did a checkout on both packages but it said nothing to update or change?
same error.

from glvisualize.jl.

SimonDanisch avatar SimonDanisch commented on June 25, 2024

Maybe a problem with Pkg? Have you tried to manually pull the newest master?

from glvisualize.jl.

musm avatar musm commented on June 25, 2024

So I deleted everything in .julia and reinstalled according to the install instructions, getting the same error...

from glvisualize.jl.

SimonDanisch avatar SimonDanisch commented on June 25, 2024

I just made sure: on Github master, the changes have arrived...
So has this script:

Pkg.clone("https://github.com/JuliaIO/FileIO.jl.git")
Pkg.clone("https://github.com/JuliaIO/MeshIO.jl.git")
Pkg.clone("https://github.com/JuliaGeometry/Packing.jl.git")
Pkg.clone("https://github.com/JuliaIO/ImageMagick.jl.git")
Pkg.build("ImageMagick")
Pkg.clone("https://github.com/JuliaGL/GLVisualize.jl.git")
Pkg.checkout("Images", "sd/fileio")
Pkg.checkout("GeometryTypes")
Pkg.checkout("FixedSizeArrays")
Pkg.checkout("Meshes", "ntuples")
Pkg.checkout("ModernGL")
Pkg.checkout("GLWindow")
Pkg.checkout("GLAbstraction")

really run without errors?
What does Pkg.status() say?
It should say something like:

 - GeometryTypes                 0.0.2+             master
 - GLVisualize                   0.0.0-             master (unregistered)

from glvisualize.jl.

musm avatar musm commented on June 25, 2024

Great, not sure what you did, but now all tests pass, sans some depreciated warnings!

from glvisualize.jl.

musm avatar musm commented on June 25, 2024

Looking forward to documentation πŸ˜‰

from glvisualize.jl.

SimonDanisch avatar SimonDanisch commented on June 25, 2024

ahaha, yeah... non existent ;) Until I wrote them, don't hesitate to ask any question please!

from glvisualize.jl.

hustf avatar hustf commented on June 25, 2024

Hello, I have much of the same problem as mmoh. Actually, I have been trying to make GLPlot work for a while now. As of yet, I am so new to the whole github / open source concept that I fear I may create a mess by interfering. Still, I hope I can contribute in a small way. My problems are probably caused by various dependencies, but perhaps this is a good place to report, and to find a working set of packages?

I have a 32-bit notepad with Windows 10, and a 64 bit Mac with graphics card GeForce GTX 775M. The mac has an OS X Yosemite parition and a Windows 8.1 partition (which I plan to upgrade soon). None of them are working with the versions of Julia I tried so far. I started out using Juno, but for making this work I believe the console is more efficient.

How can I report efficiently? What would you be most interested in? Should I ignore warnings regarding deprecated syntax in required packages? I also donΒ΄t know when to use github and when to use the Julia package manager. Would the Julia package manager be confused if I fork / branch and so forth from Github?

from glvisualize.jl.

SimonDanisch avatar SimonDanisch commented on June 25, 2024

@hustf just open an issue at GLVisualize ;) Most interesting is the error message, OS and OpenGL version. You only need to get the OpenGL version when I ask, since it's usually not the problem ;)
Warnings are mostly fine, although I try to keep everything free from warnings (there are some I can't easily get rid of while building, though).

The package manager should be mostly fine with forks and branches... I'm on windows where the package manager is really slow, so I only add packages with it and do the rest via git/github desktop.

Best,
Simon

from glvisualize.jl.

hustf avatar hustf commented on June 25, 2024

Thanks for that; I have run some tests already, and will open a separate issue in a few minutes. The OpenGL Version will be 4.1, and OpenCL 1.2 on the Mac/Windows computer
.

from glvisualize.jl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.