conda doesn't see the nuitka package

404 Views Asked by At

When trying to compile a file, using the command conda -m nuitka -onefilestrict test.py I get an error CommandNotFoundError: No command 'conda nuitka'.

Used conda config --add channels conda-forgeand conda config --set channel_priority strict before installation (conda install nuitka)

When I enter conda search nuitka - I get a lot of packages starting from the 0.5.x to 0.7.7 version. But when I use - conda list nuitka. I get nothing

conda --version
conda 4.10.3
1

There are 1 best solutions below

11
On BEST ANSWER

You seem to have never actually isntalled the package

 conda search

lists all packages that you could install that match the given name

conda list

lists the currently installed packages. So you need to do

conda install nuitka