Sakurai.JJ
Sakurai.JJ

Reputation: 684

Kernel LDA in Julia. (trouble in package installing)

I want to use Kernel LDA in julia 1.6.1. I found the repo. https://github.com/remusao/LDA.jl

I read READEME.md, and I typed

] add LDA

. But it does not work.

The following package names could not be resolved: LDA (not found in project, manifest or registry

Also, I tried all of the following commands, still does not work.

add https://github.com/remusao/LDA.jl
add https://github.com/remusao/LDA.jl.git
Pkg.clone("https://github.com/remusao/LDA.jl.git")

What is the problem? How can I install LDA.jl in my julia?

Upvotes: 1

Views: 109

Answers (1)

cbk
cbk

Reputation: 4370

The package you have linked, https://github.com/remusao/LDA.jl, has had no commits in over eight years. Among other things, it lacks a Project.toml file, which is necessary for installation in modern Julia.

Since Julia was only about one year old and at version 0.2 back in 2013 when this package last saw maintenance, the language has also changed drastically in this time such that the code in this package would likely no longer function even if you could get it to install.

If you can't find any alternative to this package for your work, forking it and upgrading it to work with modern Julia would be a nice intermediate-beginner project.

Upvotes: 5

Related Questions