pyomeca / bioviz

Biorbd visualization toolkit
MIT License
18 stars 26 forks source link

How to upgrade all python packages with conda install #66

Open callmekofi opened 2 years ago

callmekofi commented 2 years ago

Is it attainable to upgrade all Python(3.10) packages at once with conda install?

pariterre commented 2 years ago

Hi @callmekofi I am not sure I understand the question. Is this a question about how conda works or how to upgrade bioviz?

If it's the former, please ask the question on the conda forum, they will better know how to answer :)

If you meant upgrading bioviz to the Python version 3.10, I guess the answer is : conda install python=3.10 -c conda-forge But again, you are on the wrong issue for conda question!

Cheers and Happy New year :)

callmekofi commented 2 years ago

sorry. My question was related to upgrading bioviz using conda.

pariterre commented 2 years ago

Hi! If your goal is to have a specific version of bioviz, then you must install with the version: conda install bioviz=VERSION_NUMBER -c conda-forge

Depending on the other packages you have, I will or it will not perform it. One must understand that conda is not design to provide the latest packages, but a coherent environment. If you specified some version of softwares in the past, they may conflict with it other and therefore prevent from upgrading.

The rule of thumb is one ne environnement per project, then your previous work on an unrelated project won't interfere with the current install

Cheers