I want to install pyperclip from GitHub using pip install
but unfortunately it's only installed to pip and not Anaconda. I'm using PyCharm and my interpreter is Anaconda. (Linux)
I want Anaconda to install the package 'pyperclip' as well so I can use it in PyCharm. I've try Googling but can't find any result.
You need to make sure the following command uses the
pip
in yourCONDA_FOLDER/Scripts/pip
orCONDA_FOLDER/envs/ENVIRONMENT_NAME/Scripts/pip
:or if a specific branch (instead of the default one is needed) then use:
However you need to make sure your PyCharm actually uses the environment in which you install the package! Otherwise there is no sense in installing it in the wrong one.