How do I download a package from public repo to conda?
Asked a year ago
Is it possible to install and upgrade a repostiry from a place like GitHub with Conda? What would the command be like? Thanks
Boyd Levy
Tuesday, October 25, 2022
To start, make sure you have conda, pip, and git installed. After you've got them ready, you can install a public repo with a couple of commands. Firstly, activate your Anaconda environment with "source activate myenv" and "conda install git pip". Lastly, use "pip install <git-repo-url>" to install it.
Please follow our Community Guidelines