Each time I try to create a python environment with conda it uses my .local/lib/python3.6/site-packages path as the file path for the python packages, I noticed this because when trying to use tensorflow.
this is the command that i use to create the conda env
conda create -n tensorflow_od pip python=3.9
** then activate the environment with
conda activate tensorflow_od
this is what I get when I check the tensorflow that is used within the environment using "pip show tensorflow"
Name: tensorflow Version: 2.3.0 Summary: TensorFlow is an open source machine learning framework for everyone. Home-page: https://www.tensorflow.org/ Author: Google Inc. Author-email: packages@tensorflow.org License: Apache 2.0 Location: /home/nwoke/.local/lib/python3.6/site-packages Requires: absl-py, astunparse, gast, google-pasta, grpcio, h5py, keras-preprocessing, numpy, opt-einsum, protobuf, scipy, six, tensorboard, tensorflow-estimator, termcolor, wheel, wrapt Required-by: tensorflow-io, tensorflow-text, tf-models-official
How can I resolve this