Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't find package on Anaconda Navigator. What to do next?

Tags:

I am trying to install "pulp" module in Anaconda Navigator's Environment tabs. But when I search in "All" packages I can't find it. It happened with other packages too.

enter image description here

Is there any way to install my package to the desired environment?

I tried to install it by opening a terminal in the environment, but I see that afterwards it won't show up in the list.

What am I missing here?

like image 413
dimrizo Avatar asked Sep 02 '16 19:09

dimrizo


People also ask

How do I install missing packages in Anaconda?

Go to Environments tab just below the Home tab and from there we can check what all packages are installed and what is not. It is very easy to install any package through anaconda navigator, simply search the required package, select package and click on apply to install it.

How do I find my package in Anaconda?

in terminal, type : conda list to obtain the packages installed using conda. There may be some overlap of these lists as pip may recognize packages installed by conda (but maybe not the other way around, IDK).

How do I launch packages in Anaconda?

If you are not in the correct environment, type conda activate env_name (where env_name is the name of the environment you want to activate). If the package you want to run is listed when you type conda list , then you can run it directly. Try by just typing the package name. If not, try python -m package_name .


1 Answers

  1. Click Open Terminal from environment.

    open

  2. Execute conda install (package-name) in terminal mode. (The image below shows the installation of a package named Keras.)

    execute

like image 51
Lin Eliza Avatar answered Oct 04 '22 20:10

Lin Eliza