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:
- I first activated my environment using the command
conda activate<environment name>
- Install pips
conda install pip
- now type in pip commands you want. (for me it was ObjectPath)
pip install ObjectPath
- 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 :)