Go to file
psoubrie 2741895bad polygon interaction 2024-04-16 18:07:09 +02:00
.gitignore first results 2024-04-10 15:27:48 +02:00
img2xlsx.ipynb polygon interaction 2024-04-16 18:07:09 +02:00
img2xlsx.py polygon interaction 2024-04-16 18:07:09 +02:00
img2xlsx2.ipynb polygon interaction 2024-04-16 18:07:09 +02:00
readme.md first results 2024-04-10 15:27:48 +02:00

readme.md

Conda

# create environment
conda create -n <name-env> python=3.8

# activate environment
conda activate <name-env>

# deactivate environment
conda deactivate

Recreate environment

conda env create -f environment.yml

Update environment

# save updated environment.yml
conda env export > environment.yml

# update environment with environment.yml
conda env update -f environment.yml

Conda shell

conda init (-all)
# then restart terminal

# exit conda shell
conda deactivate