~> conda install pandas
fish: Unknown command 'conda'
I understand that I need to add conda
to PATH, but no matter what combinations of commands I tried, I could get it to work. I still get the above error.
Where is conda
installed? If it's in ~/anaconda/bin
, then you want to run this:
Try set -U fish_user_paths ~/anaconda/bin $fish_user_paths
Modifying PATH is discussed in the fish tutorial
Hope that helps!