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-forge
and 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
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