【查询conda目前环境的安装位置、路径】

查询conda目前环境的安装位置、路径

在当前环境中输入下述指令即可,其中,tensorflow 可使用其他任意已知安装至该环境中的包来代替。

import tensorflow
>>> print(tensorflow.__file__)

/Users/xxx/opt/anaconda3/envs/tf_env/lib/python3.7/site-packages/tensorflow/__init__.py

在这里插入图片描述

你可能感兴趣的:(日常问题,python,人工智能)