What is the difference between pip and conda?
I know pip is a package manager for python packages. However, I saw the installation on IPython’s website use conda to install IPython.
I know pip is a package manager for python packages. However, I saw the installation on IPython’s website use conda to install IPython.
I’ve noticed that normally when packages are installed using various package managers (for python), they are installed in /home/user/anaconda3/envs/env_name/ on conda and in /home/user/anaconda3/envs/env_name/lib/python3.6/lib-packages/ using pip on conda.
I’m a bit miffed by the python package installation process. Specifically, what’s the difference between packages installed in the dist-packages directory and the site-packages directory?
I’m able to update pip-managed packages, but how do I update pip itself? According to pip --version, I currently have pip 1.1 installed in my virtualenv and I want to update to the latest version.
Can I install/upgrade packages from GitHub using conda?