ong*_*enz 5 windows command-line scikit-learn conda sklearn-pandas
我想通过 Windows 命令行使用conda安装sklearn_pandas库。该软件包在 conda 存储库中显然是“私有的”(诚然,这很可能是我无法安装它的原因,但我更愿意寻求建议,以防万一有办法解决此问题)。
我试过了conda install -c creditx sklearn_pandas,但出现以下错误:
Solving environment: failed
PackagesNotFoundError: The following packages are not available from current cha
nnels:
- sklearn_pandas
Current channels:
- https://conda.anaconda.org/creditx/win-64
- https://conda.anaconda.org/creditx/noarch
- https://repo.anaconda.com/pkgs/main/win-64
- https://repo.anaconda.com/pkgs/main/noarch
- https://repo.anaconda.com/pkgs/free/win-64
- https://repo.anaconda.com/pkgs/free/noarch
- https://repo.anaconda.com/pkgs/r/win-64
- https://repo.anaconda.com/pkgs/r/noarch
- https://repo.anaconda.com/pkgs/pro/win-64
- https://repo.anaconda.com/pkgs/pro/noarch
- https://repo.anaconda.com/pkgs/msys2/win-64
- https://repo.anaconda.com/pkgs/msys2/noarch
To search for alternate channels that may provide the conda package you're
looking for, navigate to
https://anaconda.org
and use the search bar at the top of the page.
Run Code Online (Sandbox Code Playgroud)
任何人都知道我可以如何使用 conda 安装软件包(不是软件包 README 中指定的 pip)?
小智 1
easy_install <package_name>您可以根据您的情况简单地使用 , :
easy_install sklearn_pandas
Run Code Online (Sandbox Code Playgroud)
Easy Installeasy_install是一个捆绑的Python 模块 ( ) setuptools
,可让您自动下载、构建、安装和管理 Python 包。