I use Julia 1.6.0 (beta as of today) and would like to use a Python package plfit
via PyCall
.
Unfortunately, plfit
is not available in Anaconda and hence I cannot install it using Conda module:
julia> using Conda
julia> Conda.add("plfit")
[ Info: Running `conda install -y plfit` in root environment
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
PackagesNotFoundError: The following packages are not available from current channels:
- plfit
...
How can I install this package from Julia?
Conda.runconda(`install -c anaconda pip `)
. (3) I am usingJULIA_DEPOT_PATH
and find that having Python packages in--user
environments is usually source of problems (Python's package management robustness is not any close to that of Julia). Again this is just my personal view on that :-) – Przemyslaw Szufel