如何在 anaconda 上安装 tensorflow-transform?
How to install tensorflow-transform on anaconda?
我们可以使用 pip 安装 tensorflow-transform,但如何使用 Conda 安装它?
我已经尝试使用 conda install -c anaconda tensorflow-transform
及其所有变体,但没有结果。
A search of Anaconda Cloud shows that tensorflow-transform
is not available through any channels on any platform. Moreover, the recommended way to install the package is to use PyPI。但是,仍然可以通过首先激活环境将软件包安装到特定的 Conda 环境中:
conda activate your_env
pip install tensorflow-transform
我们可以使用 pip 安装 tensorflow-transform,但如何使用 Conda 安装它?
我已经尝试使用 conda install -c anaconda tensorflow-transform
及其所有变体,但没有结果。
A search of Anaconda Cloud shows that tensorflow-transform
is not available through any channels on any platform. Moreover, the recommended way to install the package is to use PyPI。但是,仍然可以通过首先激活环境将软件包安装到特定的 Conda 环境中:
conda activate your_env
pip install tensorflow-transform