In: Computer Science
Q How do I Install a Python module that is not included with the Anaconda Distribution.
Ans: If the packages are not present with the anoconda distribution then follow the following command:
Here, PACKAGENAME is the module that you want to download.These are located in to the package repository.
2. Then after click on the links below and see which packages are available for each version of the python (it may be 3.7, 3.6, or 2.7) and also for each operating syatem and the architecture.
3 And then we have to download for 32 bit and 64 bit Windows,64 Linux on the Intel and macOS. We have to selct the options according to our system.
To install the specific versions of the conda packages: For this we use the given command. Here we have to include the desired version number and or prefix after the package name.
conda install PACKAGENAME =2.3.4
To install in the current working environment : We have to write the command.
conda install PACKAGENAME=2
To installl in the named environment we use the command:
conda install PACKAGENAME=2.3.4 -n some-environment
THANKS , i think this will give you a better intuition about your question. If you have any doubt feel free to ask in the comment section.