Python Forum

Full Version: how to keep anaconda up to date?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi there

i have installed Anaconda on a linux machine. And i have to say - that i like it.
i can run python - without taking care for the environment things (no need to look after pyenv and dependencies etc. etx.
the question is :; can i check the version of my installed devices like

spyder 4.01
jupyter-notebook 6.03
vscode 1-56-0
jupyter lab 1.2.6



-. how to keep the various packages . up to date!?

is there a way -& method to do this ( automatically) via comandline!?
With (base) environment active conda activate
conda update conda
conda update --all
Keeping Anaconda Up To Date
Quote:Why Updating the Anaconda Package is Almost Always a Bad Idea
Then read about making conda Environments,you get smaller environment and dont have to try update 700+ packages as main Anaconda has.
apollo Wrote:i can run python - without taking care for the environment things (no need to look after pyenv and dependencies etc. etx.
pyenv can be used to install Anaconda,so what you say here make little sense.
I always use pyenv to install Anaconda,the advantages with pyenv that it switch seamlessly Python version(Standard Python,Anaconda,Miniconda,PyPy...ect).