Open Jean1995 opened 2 years ago
Thank you very much!
I made a proper requirements.txt
and changed the conda create
command in the README.md
.
test
folder: removed :DREADME.md
with your suggestion.If possible, please provide me with feedback using the new instructions. Thank you!
I've been reproducing the installation steps on my local Ubuntu (running on WSL). The steps are in principle straight-forward, but there are still issues that could be fixed in the instructions:
conda install dask distributed -c conda-forge
conda env config vars set PYTHONPATH="$HOME/test/muography-bachelor/computation/EcoMug_pybind11/build:$PYTHONPATH"
, however, there was no specification that stuff should be installed in atest
folder. So this should be generalized, or specified 😄In addition, there are some minor issues, where I am not sure whether this is due to my limited understanding of conda, or whether this is also an error:
conda create -n m1
,conda activate m1
,conda install python=3.10
, I was still using the default python version. According to a small google search, the way to initialize a conda environment with a specific python environment isconda create --name m1 python=3.10 pip
.conda install jupyter
inside my conda environment. Afterwards, my jupyter notebook used the correct python version.