Bulk package updates using Conda

You want conda update –all. conda search –outdated will show outdated packages, and conda update –all will update them (note that the latter will not update you from Python 2 to Python 3, but the former will show Python as being outdated if you do use Python 2).

PackagesNotFoundError: The following packages are not available from current channels:

Try adding the conda-forge channel to your list of channels with this command: conda config –append channels conda-forge. It tells conda to also look on the conda-forge channel when you search for packages. You can then simply install the two packages with conda install slycot control. Channels are basically servers for people to host packages … Read more

anaconda update all possible packages?

TL;DR: dependency conflicts: Updating one requires (by it’s requirements) to downgrade another You are right: conda update –all is actually the way to go1. Conda always tries to upgrade the packages to the newest version in the series (say Python 2.x or 3.x). Dependency conflicts But it is possible that there are dependency conflicts (which … Read more

How to run Conda?

you might want to try this: for anaconda 2 : export PATH=~/anaconda2/bin:$PATH for anaconda 3 : export PATH=~/anaconda3/bin:$PATH for anaconda 4 : Use the Anaconda Prompt and then conda –version to confirm that it worked. The export PATH=~/anaconda3/bin:$PATH works but stops when you exit the terminal in order change that you have to run sudo … Read more

How to update an existing Conda environment with a .yml file

Try using conda env update: conda activate myenv conda env update –file local.yml –prune –prune uninstalls dependencies which were removed from local.yml, as pointed out in this answer by @Blink. Or without the need to activate the environment (thanks @NumesSanguis): conda env update –name myenv –file local.yml –prune See Updating an environment in Conda User … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)