I'm a mathematician who's self-teaching data science, so forgive me if this is a noob question. I'm running miniconda on Windows and ran into what seems to be a path problem; miniconda contains numpy and pandas but Python can't find it. Miniconda "installs" numpy but Python can't import it said it was likely a path error; https://stackoverflow.com/a/36354847/4540218 recommended I append the file path to sys.path; Where does Anaconda Python install on Windows? says that path can be found before the angle bracket in the Conda command line.
But neither C:\\Users\\myName\\.conda
, which is the actual address, or C:\\Users\\myName\\miniconda3
, which is what it said in the environments.txt file I found there, seem to work. Moreover, the environments.txt file appears to be the ONLY thing in that folder. I would have expected a Python install.
Even weirder:
(base) C:\Users\benja>where anaconda
INFO: Could not find files for the given pattern(s).
Is what I get when I try to use the Windows command where to find it, as another commenter recommended. Have I misunderstood something about all this?