Anaconda-navigator: command not found ERROR

Hello everyone!
i have successfully installed minianaconda on Ubuntu 22.04. When i use the command: “anaconda-navigator” i get the error message: “anaconda-navigator: command not found.”
But when i input “conda --version”. the version will be printed (conda 24.1.2).
Also, when i input “conda list,” the list of installed programs will be printed.
What may be the problem ?

conda and Anaconda Navigator are actually two different things. conda is a command line package and environment manager, while Anaconda Navigator is a desktop GUI for managing conda environments, launching apps, and connecting to other Anaconda services.

It sounds like you’ve only downloaded Miniconda, which does not include Navigator. However, you can install it with conda install anaconda-navigator. Hopefully that helps.

1 Like

This is what i got:
Channels:

  • defaults
    Platform: linux-64
    Collecting package metadata (repodata.json): done
    Solving environment: / warning libmamba Added empty dependency for problem type SOLVER_RULE_UPDATE
    failed

LibMambaUnsatisfiableError: Encountered problems while solving:

  • package anaconda-navigator-1.6.10-py27h4abd9a3_0 requires python >=2.7,<2.8.0a0, but none of the providers can be installed

Could not solve for environment specs
The following packages are incompatible
├─ anaconda-navigator is installable with the potential options
│ ├─ anaconda-navigator [1.10.0|1.6.10|…|2.1.0] would require
│ │ └─ python >=3.6,<3.7.0a0 , which can be installed;
│ ├─ anaconda-navigator [1.10.0|1.8.7|…|2.4.0] would require
│ │ └─ python >=3.7,<3.8.0a0 , which can be installed;
│ ├─ anaconda-navigator [1.10.0|1.9.12|…|2.5.4] would require
│ │ └─ python >=3.8,<3.9.0a0 , which can be installed;
│ ├─ anaconda-navigator [1.10.0|2.0.1|…|2.5.4] would require
│ │ └─ python >=3.9,<3.10.0a0 , which can be installed;
│ ├─ anaconda-navigator [1.6.10|1.6.11|…|1.9.7] would require
│ │ └─ python >=2.7,<2.8.0a0 , which can be installed;
│ ├─ anaconda-navigator [1.6.10|1.6.11|…|1.9.2] would require
│ │ └─ python >=3.5,<3.6.0a0 , which can be installed;
│ ├─ anaconda-navigator [2.3.0|2.3.1|…|2.5.4] would require
│ │ └─ python >=3.10,<3.11.0a0 , which can be installed;
│ └─ anaconda-navigator [2.4.1|2.4.2|…|2.5.4] would require
│ └─ python >=3.11,<3.12.0a0 , which can be installed;
└─ pin-1 is not installable because it requires
└─ python 3.12.* , which conflicts with any installable versions previously reported.

Pins seem to be involved in the conflict. Currently pinned specs:

  • python 3.12.* (labeled as ‘pin-1’)

Looks like you were just a few minutes too soon :slight_smile: From the error, it looks like you have Python 3.12 in your environment and a compatible version of Navigator with Python 3.12 was just released this afternoon. There is a version 2.6.0 that is now available that should be compatible with your Python 3.12 environment.

Please try to install again and see if it locates the right version.

Okay thanks very much