Closed truatpasteurdotfr closed 3 years ago
Hmmm... seems like the active conda env does either not have all required packages installed and then uses some incompatible one from somewhere else, or for some reason incompatible packages had been installed.
I’d start from scratch with a fresh conda environment and hope it just works.
Or @MLbyML sees this and has muuuuch better advice... 😉
conda list --explicit > /tmp/EmbedSeg_environment-explicit.list
attached
EmbedSeg_environment-explicit.list.txt
pip3 list > /tmp/pip3.list.txt
attached
pip3.list.txt
Hello @truatpasteurdotfr Thank you for opening an issue.
I can potentially suggest a quick fix for now.
hdmedians
package herehdmedians
package from EmbedSeg_environment.yml
by deleting this line
(Currently hdmedians
package is only being imported temporarily just for benchmarking different packages for medoid evaluation but is not, at the moment, being used in the EmbedSeg
code. The import will be removed from the EmbedSeg_environment.yml
file possibly in the future. )EmbedSegEnv
completely using:
conda remove -n EmbedSegEnv --all
Getting Started
section in README.md
conda env create -f EmbedSeg_environment.yml
conda activate EmbedSegEnv
python3 -m pip install -e .
# python3 -m ipykernel install --user --name EmbedSegEnv --display-name "EmbedSegEnv"
python3 -m ipykernel install --sys-prefix --name EmbedSegEnv --display-name "EmbedSegEnv"
Let us know if this helps. Thank you for debugging and using the code!
:P that seems to have fixed the issue, thx.
Hi,
I am trying to run the firs example notebook, and I am failing at the very first cell...
miniconda installation, creating the environment from your directions.
(instead of --user to install it into the virtualenv instead of $HOME/.local)