anaconda – graphviz – can’t import after installation

The graphviz conda package is no Python package. It simply puts the graphviz files into your virtual env’s Library/ directory. Look e.g. for dot.exe in the Library/bin/ directory. To install the graphviz Python package, you can use pip: conda install pip and pip install graphviz. Always prefer conda packages if they are available over pip … Read more

How to list package versions available with conda

To search for a specific package, use: conda search -f <package_name>. For example, based on the question, to search all versions for “jupyter” package, you’ll do: conda search -f jupyter. This will only return information about packages named “jupyter” exactly. Source: https://docs.conda.io/projects/conda/en/latest/commands/search.html

Upgrade to python 3.8 using conda

You can update your python version to 3.8 in conda using the command conda install -c anaconda python=3.8 as per https://anaconda.org/anaconda/python. Though not all packages support 3.8 yet, running conda update –all may resolve some dependency failures. You can also create a new environment called py38 using this command conda create -n py38 python=3.8 Edit … Read more

How do I keep track of pip-installed packages in an Anaconda (Conda) environment?

conda-env now does this automatically (if pip was installed with conda). You can see how this works by using the export tool used for migrating an environment: conda env export -n <env-name> > environment.yml The file will list both conda packages and pip packages: name: stats channels: – javascript dependencies: – python=3.4 – bokeh=0.9.2 – … Read more

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