问题
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.
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?
回答1:
- Click
Open terminal
from environment
- Execute
conda install keras
in terminal mode
回答2:
Download tar.gz file of the package (in your case, pulp) from here and follow the accepted answer of this stackoverflow question.
回答3:
Thanks for A2A
- Open "Anaconda Navigator"
- Navigate to "Environments"
- Select your environment where the package needs to be installed
- Click on the "play/pause" button present on the environment name
- Click "Open terminal" from your environment
- In terminal type "conda install (package-name)"
Added instructions 1. If the package is not available in any of the Anaconda Repository then type the following: "pip install (package name)"
回答4:
Open your Terminal, and write the following code.
conda install -c conda-forge pulp
来源:https://stackoverflow.com/questions/39299726/cant-find-package-on-anaconda-navigator-what-to-do-next