简体   繁体   English

Conda ObjectPath安装无法正常工作

[英]Conda ObjectPath Installation is not working

I tried installing objectpath in Conda promt using 我尝试使用Conda promt安装对象路径

    conda install -c auto objectpath

but this does not install saying packages not found. 但这不会安装说找不到软件包。 I used the code in the https://anaconda.org/auto/objectpath . 我在https://anaconda.org/auto/objectpath中使用了代码。

I have a doubt whether there is a new command, because this code was uploaded 5 years ago. 我怀疑是否有新命令,因为此代码是5年前上传的。

please clarify my doubt. 请澄清我的疑问。 Thanks 谢谢

Well I managed it! 好吧,我做到了! What I did was installed ObjectPath package using pip command. 我所做的是使用pip命令安装了ObjectPath软件包。

First check if you want to add your package to your default environment. 首先检查您是否要将软件包添加到默认环境。 If you want to create new one please check this: Using Pip to install packages to Anaconda Environment 如果要创建新软件包,请检查以下内容: 使用Pip将软件包安装到Anaconda Environment

I wanted to add the package to my default. 我想将程序包添加到默认设置。 So: 所以:

  1. I first activated my environment using the command 我首先使用以下命令激活了环境
  conda activate<environment name> 
  1. Install pips 安装点数

conda install pip 康达安装点

  1. now type in pip commands you want. 现在输入您想要的pip命令。 (for me it was ObjectPath) (对我来说是ObjectPath)

pip install ObjectPath 点安装ObjectPath

  1. Check whether the package is being installed in your desired environment. 检查软件包是否已在所需的环境中安装。

conda list 康达清单

Main concern is the environment you are trying to install this. 主要问题是您要安装此环境。 Activate the desired one. 激活所需的一个。

Thanks! 谢谢! Hope this will help someone who has/will face the same problem as I did :) 希望这将帮助那些已经/将面临与我相同的问题的人:)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM