Conda ObjectPath Installation is not working

110 Views Asked by At

I tried installing objectpath in Conda promt using

    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.

I have a doubt whether there is a new command, because this code was uploaded 5 years ago.

please clarify my doubt. Thanks

1

There are 1 best solutions below

0
On

Well I managed it! What I did was installed ObjectPath package using pip command.

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

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. (for me it was ObjectPath)

pip install 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 :)