OutlierDetectionJL / OutlierDetection.jl

Fast, scalable and flexible Outlier Detection with Julia
https://outlierdetectionjl.github.io/OutlierDetection.jl/dev/
MIT License
79 stars 8 forks source link

Pkg.add("OutlierDetection") issues #27

Closed nick-torenvliet closed 2 years ago

nick-torenvliet commented 2 years ago

Hi - Just a heads up, I've got a new, fairly crisp, installation of julia 1.7.2,

It looks like there is no way to install Turing and OutlierDetection side by side - the dependencies for OutlierDetection leave no viable version for the Turing install.

Nick

davnn commented 2 years ago

Hi! Unfortunately I cannot reproduce the issue, the following code does not lead to dependecy conflicts for me. Maybe another package is to blame here?

import Pkg
Pkg.activate(temp=true)

Pkg.add([
    "Turing",
    "OutlierDetection",
    "OutlierDetectionData",
    "OutlierDetectionPython",
    "OutlierDetectionNetworks",
    "OutlierDetectionNeighbors"
])
davnn commented 2 years ago

Closing because of inactivity.