Answers for "install using conda"

4

conda install package

#To install a package in currently active enviroment
conda install package-name
Posted by: Guest on November-07-2020
0

conda install version

Format         Sample Specification     Results
Exact          qtconsole==4.5.1         4.5.1
Fuzzy          qtconsole=4.5            4.5.0, 4.5.1, ..., etc.
>=, >, <, <=  "qtconsole>=4.5"          4.5.0 or higher
               qtconsole"<4.6"          less than 4.6.0

OR            "qtconsole=4.5.1|4.5.2"   4.5.1, 4.5.2
AND           "qtconsole>=4.3.1,<4.6"   4.3.1 or higher but less than 4.6.0
Posted by: Guest on August-22-2021

Code answers related to "install using conda"

Python Answers by Framework

Browse Popular Code Answers by Language