I am in a conda virtual environment and am getting a PackagesNotFoundError
error when running
conda install --name myenv --file my_packages.txt
where my_packages.txt is a text file with a python package name on each line.
but some packages that were giving me an error existed in the conda-forge environment (i had already --append conda-forge to my virtual environment), so I tried some of the failed packages individually, e.g.:
conda install -c conda-forge time
as well as all the other options that are listed here: https://anaconda.org/conda-forge/time
but am still getting the same PackagesNotFoundError
each time.
Can anyone tell me why this is?
For extra context, the other packages I'm having issues with are: websockets, nest_asyncio, hmac, json, base64, etc.
But the time
packages is very confusing since it clearly exists in conda-forge (^ link).
I can post the current channels listed via the error output in the comments since StackOverflow isn't letting me post so many links.
I am using:
- conda 22.11.1 (from miniconda)
- MacOS 13.0.1
Thank you.