conda find package version

To find a package version in Lua using conda, you can follow these steps:

  1. Open the command prompt or terminal on your computer.

  2. Activate the conda environment where the package is installed by running the appropriate command. For example, if your environment is called "myenv", you would run:

conda activate myenv
  1. Once the environment is activated, you can use the "conda list" command to list all the packages installed in that environment. Run the following command:
conda list
  1. This will display a list of all the packages installed in the activated environment, along with their versions. Look for the package you are interested in and note down its version number.

That's it! You have successfully found the version of the package using conda in Lua.